ignore empty update operations
This commit is contained in:
parent
76e12a94cf
commit
d329d1d411
1 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue