mirror of https://gitee.com/bigwinds/arangodb
[3.5] no coordinators left behind (#10420)
* no coordinators left behind * Update CHANGELOG * Update CHANGELOG
This commit is contained in:
parent
e7db6d3097
commit
23fbe0af54
|
@ -1,6 +1,8 @@
|
||||||
v3.5.3 (XXXX-XX-XX)
|
v3.5.3 (XXXX-XX-XX)
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
|
* Fixed internal issue #4647: dead Coordinators are not removed for agency.
|
||||||
|
|
||||||
* Fixed UPSERT matching.
|
* Fixed UPSERT matching.
|
||||||
|
|
||||||
Empty objects in the `UPSERT { ... }` expression will not be omitted anymore:
|
Empty objects in the `UPSERT { ... }` expression will not be omitted anymore:
|
||||||
|
|
|
@ -112,6 +112,7 @@ actions.defineHttp({
|
||||||
operations['/arango/Plan/DBServers/' + serverId] = {'op': 'delete'};
|
operations['/arango/Plan/DBServers/' + serverId] = {'op': 'delete'};
|
||||||
operations['/arango/Current/ServersRegistered/' + serverId] = {'op': 'delete'};
|
operations['/arango/Current/ServersRegistered/' + serverId] = {'op': 'delete'};
|
||||||
operations['/arango/Current/DBServers/' + serverId] = {'op': 'delete'};
|
operations['/arango/Current/DBServers/' + serverId] = {'op': 'delete'};
|
||||||
|
operations['/arango/Current/Coordinators/' + serverId] = {'op': 'delete'};
|
||||||
operations['/arango/Supervision/Health/' + serverId] = {'op': 'delete'};
|
operations['/arango/Supervision/Health/' + serverId] = {'op': 'delete'};
|
||||||
operations['/arango/Target/MapUniqueToShortID/' + serverId] = {'op': 'delete'};
|
operations['/arango/Target/MapUniqueToShortID/' + serverId] = {'op': 'delete'};
|
||||||
operations['/arango/Current/ServersKnown/' + serverId] = {'op': 'delete'};
|
operations['/arango/Current/ServersKnown/' + serverId] = {'op': 'delete'};
|
||||||
|
|
Loading…
Reference in New Issue