Remove automatic default group assignment in netapp_e_host module (#60239)

This commit is contained in:
Nathan Swartz 2019-08-08 07:48:09 -05:00 committed by Jake Jackson
parent 87a568da0b
commit f6ae6eb3e0

View file

@ -439,8 +439,6 @@ class Host(object):
if self.group: if self.group:
self.post_body['groupId'] = self.group_id() self.post_body['groupId'] = self.group_id()
else:
self.post_body['groupId'] = "0000000000000000000000000000000000000000"
self.post_body['hostType'] = dict(index=self.host_type_index) self.post_body['hostType'] = dict(index=self.host_type_index)