Merge pull request #1145 from nosqlbench/my-nosqlbench-948-testcontainers-v2

Timeout correction for GHA on nosqlbench #948 testcontainers
This commit is contained in:
Jonathan Shook 2023-03-01 11:16:29 -06:00 committed by GitHub
commit b4512f10eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -114,7 +114,7 @@ public class WorkloadContainerVerifications {
"java", "-jar", JARNAME, shortName, BASIC_CHECK_IDENTIFIER, "host="+ hostIP, "localdc="+ datacenter, "port="+ mappedPort9042.toString(), "table=keyvalue", "keyspace=baselines"
};
logger.info("The final command line: " + String.join(" ", args));
ProcessResult runSchemaResult = invoker.run("run-workload", 30, args);
ProcessResult runSchemaResult = invoker.run("run-workload", 60, args);
//STEP 2 Check runSchemaOut for errors