You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All of our chef runs are updating ACLs every single time because the acl values are arrays and they are compared without sorting
Example chef run output -
update acl environments/environment at environments/environment
15:08:34.045 create: update groups from ["admins", "prod", "clients", "our"] to ["our", "admins", "prod", "clients"]�
15:08:34.045 �read: update groups from ["clients", "admins", "users", "our"] to ["our", "clients", "admins", "users"]�
15:08:34.046 �update, delete, grant: update groups from ["admins", "our"] to ["our", "admins"]�
Solution: Make the comparision insensitive to order
The text was updated successfully, but these errors were encountered:
All of our chef runs are updating ACLs every single time because the acl values are arrays and they are compared without sorting
Example chef run output -
update acl environments/environment at environments/environment
15:08:34.045 create: update groups from ["admins", "prod", "clients", "our"] to ["our", "admins", "prod", "clients"]�
15:08:34.045 �read: update groups from ["clients", "admins", "users", "our"] to ["our", "clients", "admins", "users"]�
15:08:34.046 �update, delete, grant: update groups from ["admins", "our"] to ["our", "admins"]�
Solution: Make the comparision insensitive to order
The text was updated successfully, but these errors were encountered: