1
0
Fork 0

Increase some timeouts from 60 to 90s to be more load tolerant.

This commit is contained in:
Max Neunhoeffer 2016-10-13 12:52:59 +02:00
parent a5e51e5459
commit 039ca9aceb
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@
using namespace arangodb::basics;
using namespace arangodb::rest;
static double const CL_DEFAULT_TIMEOUT = 60.0;
static double const CL_DEFAULT_TIMEOUT = 90.0;
namespace {
template<typename T>

View File

@ -72,7 +72,7 @@ function SynchronousReplicationSuite () {
cinfo = global.ArangoClusterInfo.getCollectionInfo(database, cn);
shards = Object.keys(cinfo.shards);
var count = 0;
while (++count <= 120) {
while (++count <= 180) {
ccinfo = shards.map(
s => global.ArangoClusterInfo.getCollectionInfoCurrent(database, cn, s)
);