File tree Expand file tree Collapse file tree
core/src/main/java/com/orientechnologies/orient/core/index Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -710,6 +710,7 @@ public int getVersion() {
710710
711711 public ODocument updateConfiguration () {
712712 ODocument document = new ODocument ();
713+ document .setTrackingChanges (false );
713714 document .field (OIndexInternal .CONFIG_TYPE , im .getType ());
714715 document .field (OIndexInternal .CONFIG_NAME , im .getName ());
715716 document .field (OIndexInternal .INDEX_VERSION , im .getVersion ());
Original file line number Diff line number Diff line change @@ -824,6 +824,7 @@ public ODocument toStream() {
824824 internalAcquireExclusiveLock ();
825825 try {
826826 ODocument document = new ODocument (identity );
827+ document .setTrackingChanges (false );
827828 final OTrackedSet <ODocument > indexes = new OTrackedSet <>(document );
828829
829830 for (final OIndex i : this .indexes .values ()) {
You can’t perform that action at this time.
0 commit comments