mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
stack timeouts so that errors in integrated tests are not lost
This commit is contained in:
@@ -38,7 +38,7 @@ public class GrafanaClientConfig {
|
||||
private URI baseUrl;
|
||||
|
||||
@JsonProperty("timeoutms" )
|
||||
private int timeoutms;
|
||||
private int timeoutms = 20000;
|
||||
|
||||
private final List<Authenticator> authenticators = new ArrayList<>();
|
||||
private final List<Supplier<Map<String, String>>> headerSources = new ArrayList<>();
|
||||
|
||||
@@ -76,7 +76,7 @@ class ExitStatusIntegrationTests {
|
||||
void testExitStatusOnActivityOpException() {
|
||||
ProcessInvoker invoker = new ProcessInvoker();
|
||||
invoker.setLogDir("logs/test");
|
||||
ProcessResult result = invoker.run("exitstatus_asyncstoprequest", 30,
|
||||
ProcessResult result = invoker.run("exitstatus_asyncstoprequest", 60,
|
||||
"java", "-jar", JARNAME, "--logs-dir", "logs/test/asyncstop", "--logs-level", "debug", "run",
|
||||
"driver=diag", "threads=2", "cyclerate=10", "op=erroroncycle:erroroncycle=10", "cycles=50", "-vvv"
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user