Increase the configure timeout to 60 seconds, to avoid spurious configuration failures

This commit is contained in:
Evan Tschannen 2019-05-16 18:03:16 -07:00
parent f3897238f8
commit 4166ecdfe7
1 changed files with 1 additions and 1 deletions

View File

@ -302,7 +302,7 @@ ACTOR Future<ConfigurationResult::Type> changeConfig( Database cx, std::map<std:
}
}
state Future<Void> tooLong = delay(4.5);
state Future<Void> tooLong = delay(60);
state Key versionKey = BinaryWriter::toValue(g_random->randomUniqueID(),Unversioned());
state bool oldReplicationUsesDcId = false;
loop {