Merge pull request #1656 from chrismeyersfsu/fix-instance_group_creation_required

only require the name field when creating instance group
This commit is contained in:
Chris Meyers 2018-05-02 13:07:46 -04:00 committed by GitHub
commit e24eef1d13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4599,7 +4599,7 @@ class InstanceGroupSerializer(BaseSerializer):
"this group when new instances come online.")
)
policy_instance_list = serializers.ListField(
child=serializers.CharField(),
child=serializers.CharField(), required=False,
help_text=_("List of exact-match Instances that will be assigned to this group")
)