From 64775a0a756c693b23c84f54fddbdcce5b1d5f3c Mon Sep 17 00:00:00 2001 From: Alexander Bayandin Date: Fri, 16 Dec 2022 17:45:38 +0000 Subject: [PATCH] test_runner/performance: fix flush for NeonCompare (#3135) Fix performance tests: ``` AttributeError: 'NeonCompare' object has no attribute 'pageserver_http' ``` --- test_runner/fixtures/compare_fixtures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_runner/fixtures/compare_fixtures.py b/test_runner/fixtures/compare_fixtures.py index 530e5afaab..fa488c4446 100644 --- a/test_runner/fixtures/compare_fixtures.py +++ b/test_runner/fixtures/compare_fixtures.py @@ -115,7 +115,7 @@ class NeonCompare(PgCompare): return self._pg_bin def flush(self): - self.pageserver_http.timeline_checkpoint(self.env.initial_tenant, self.timeline) + self.pageserver_http_client.timeline_checkpoint(self.env.initial_tenant, self.timeline) self.pageserver_http_client.timeline_gc(self.env.initial_tenant, self.timeline, 0) def compact(self):