1
0
Fork 0

no coordinators left behind (#10422)

This commit is contained in:
Kaveh Vahedipour 2019-11-14 10:18:50 +01:00 committed by Max Neunhöffer
parent a8ec461b58
commit 41def4abd3
2 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,8 @@
devel
-----
* Fixed an issue where removeServer left bihind current coordinators
* Allow usage of AQL function `RANDOM_TOKEN` with an argument value of `0`. This
now produces an empty string, whereas in older versions this threw an invalid
value exception.
@ -11,7 +13,7 @@ devel
engine, but comes with a big performance penalty as all collections will be locked
exclusively for writes.
* Added new timeout option for AQL queries. If a query does not finish execution
* Added new timeout option for AQL queries. If a query does not finish execution
within the given time in seconds it will be killed.
* Fixed undefined behaviour with creation of ArangoSearch links with custom

View File

@ -112,6 +112,7 @@ actions.defineHttp({
operations['/arango/Plan/DBServers/' + serverId] = {'op': 'delete'};
operations['/arango/Current/ServersRegistered/' + 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/Target/MapUniqueToShortID/' + serverId] = {'op': 'delete'};
operations['/arango/Current/ServersKnown/' + serverId] = {'op': 'delete'};