ignore empty update operations

This commit is contained in:
Laura Klünder 2024-11-28 15:17:43 +01:00
parent 76e12a94cf
commit d329d1d411

View file

@ -610,6 +610,8 @@ class ChangedObjectCollection(BaseSchema):
else:
new_situation.operations.append(new_operation)
else:
if not (isinstance(new_operation, UpdateObjectOperation) and not new_operation.fields):
# we might have empty update operations, those can be ignored
new_situation.operations.append(new_operation)
new_situation.remaining_operations_with_dependencies.pop(i)