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
We are trying to stop the dc2dc synchronisation (sync enabled flag on the arango deployment resource) on the outgoing side without success.
We already stopped (aborted) the replication between the two clusters.
The problem is in the plan_builder_sync.go file, where the cache.ArangoSync.IsSyncInProgress() is checked. This will always return true on the outgoing side because the state on the agent contains this part:
....
"synchronizationState": {
"outgoing": { "targets": {}
},
"structureVersion": "0.2"
},
...
The targets part will never be null or non existent.
The text was updated successfully, but these errors were encountered:
We are trying to stop the dc2dc synchronisation (sync enabled flag on the arango deployment resource) on the outgoing side without success.
We already stopped (aborted) the replication between the two clusters.
The problem is in the plan_builder_sync.go file, where the cache.ArangoSync.IsSyncInProgress() is checked. This will always return true on the outgoing side because the state on the agent contains this part:
....
"synchronizationState": {
"outgoing": {
"targets": {}
},
"structureVersion": "0.2"
},
...
The targets part will never be null or non existent.
The text was updated successfully, but these errors were encountered: