Reduce the duration of the pgbench test.

We'll want to run it for longer when doing benchmarking, but 5 seconds
should be enough to tease out any basic bugs.
This commit is contained in:
Heikki Linnakangas
2021-05-05 15:47:13 +03:00
parent 8e57c2e413
commit efa4ecaa7c
2 changed files with 2 additions and 2 deletions

View File

@@ -80,7 +80,7 @@ fn pgbench() {
let node = compute_cplane.new_test_node(maintli);
node.start().unwrap();
let status = node.pg_bench(10, 100);
let status = node.pg_bench(10, 5);
assert!(status.success());
}