From ed40a045c09898759708a22c453b17ca42a1ac94 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Sat, 19 Nov 2022 12:06:33 +0200 Subject: [PATCH] Add more logging to track down test_gc_cutoff failure. see https://github.com/neondatabase/neon/issues/2856 --- test_runner/regress/test_gc_cutoff.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_runner/regress/test_gc_cutoff.py b/test_runner/regress/test_gc_cutoff.py index 9c9b9d26c7..5899102586 100644 --- a/test_runner/regress/test_gc_cutoff.py +++ b/test_runner/regress/test_gc_cutoff.py @@ -38,7 +38,7 @@ def test_gc_cutoff(neon_env_builder: NeonEnvBuilder, pg_bin: PgBin): for _ in range(5): with pytest.raises(Exception): - pg_bin.run_capture(["pgbench", "-N", "-c5", "-T200", "-Mprepared", connstr]) + pg_bin.run_capture(["pgbench", "-P1", "-N", "-c5", "-T200", "-Mprepared", connstr]) env.pageserver.stop() env.pageserver.start() pageserver_http.configure_failpoints(("after-timeline-gc-removed-layers", "exit"))