Closed
Description
Related
Description
When coordinator is start, it reponse 503 error about few seconds.
If you get a 503 error, I think calling a different coordinator will solve it.
- error 503. contains 'x-arango-endpoint' header : OK
- error 503. except 'x-arango-endpoint' header : Response Error.
com.arangodb.ArangoDBException: Response: 503, Error: 503 - service unavailable due to startup or maintenance mode
Proposal
} else if (errorEntityEx != null) {
if(errorEntityEx.getErrorNum() == 503) { //Add this line case of maintenance or startup mode.
handleException(true, errorEntityEx, hostHandle, request, host, reqId, attemptCount, rfuture);
} else {
rfuture.completeExceptionally(errorEntityEx);
}
} else {