Skip to content

Commit

Permalink
shortend request reset for reindexing
Browse files Browse the repository at this point in the history
  • Loading branch information
drfho committed Jun 20, 2024
1 parent c3f64f4 commit 3e06d55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Products/zms/_versionmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ def commitObjChanges(self, parent, REQUEST, forced=False, do_history=True, do_de
# Synchronize search.
self.getCatalogAdapter().reindex_node(self)
# Reset Request-Flags.
[(REQUEST.set(x, request.get(x)), REQUEST.get(x, None)) for x in request]
[REQUEST.set(x, request.get(x)) for x in request]
# Return flag for deleted objects.
standard.writeLog( self, '[commitObjChanges]: done (in '+str(int((time.time()-t0)*100.0)/100.0)+' secs.)')
return delete
Expand Down

0 comments on commit 3e06d55

Please sign in to comment.