NoteDbOnlyIT: Fix setting of timeout

Change I1a869b0f7d renamed the config parameter notedb.timeout to
retry.timeout.

Change-Id: Ifcef0d800e0d520471bf64461dcdceea84f01272
Signed-off-by: Edwin Kempin <ekempin@google.com>
This commit is contained in:
Edwin Kempin
2018-06-05 18:15:49 +02:00
parent 87b0965df5
commit d273ac302d

View File

@@ -64,7 +64,7 @@ public class NoteDbOnlyIT extends AbstractDaemonTest {
public static Config defaultConfig() {
Config cfg = new Config();
// Avoid spurious timeouts during intentional retries due to overloaded test machines.
cfg.setString("noteDb", null, "retryTimeout", Integer.MAX_VALUE + "s");
cfg.setString("retry", null, "timeout", Integer.MAX_VALUE + "s");
return cfg;
}