Skip to content

Commit

Permalink
[FIX] Extensible attribute ENUM list values updation (#260)
Browse files Browse the repository at this point in the history
  • Loading branch information
JkhatriInfobox authored Sep 17, 2024
1 parent 3c9ea1a commit a6ef4e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/module_utils/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ def compare_objects(self, current_object, proposed_object):
return False

# Validate the Sequence of the List data
if key in ('external_servers',) and not self.verify_list_order(proposed_item, current_item):
if key in ('external_servers', 'list_values') and not self.verify_list_order(proposed_item, current_item):
return False

for subitem in proposed_item:
Expand Down

0 comments on commit a6ef4e7

Please sign in to comment.