1
0
Fork 0

Merge branch 'devel' of https://github.com/arangodb/arangodb into devel

This commit is contained in:
Simon Grätzer 2017-05-22 19:09:38 +02:00
commit 80aa6e0e77
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ function isClusterReadyForBusiness () {
const coordIds = getPeerCoordinatorIds();
return parallelClusterRequests(function * () {
for (const coordId of coordIds) {
yield [coordId, 'GET', '/_api/foxx/_local/status'];
yield [coordId, 'GET', '/_api/version'];
}
}()).every(response => response.statusCode === 200);
}