From e85607eed835224a7d2d41c92166069347a395e0 Mon Sep 17 00:00:00 2001 From: Vlad Lazar Date: Mon, 14 Apr 2025 15:42:35 +0100 Subject: [PATCH] tests: remove config tweak allowing old versions to start with a batching config (#11560) ## Problem Pageservers now ignore unknown config fields, so this config tweaking is no longer needed. ## Summary of changes Get rid of the hack. Closes https://github.com/neondatabase/neon/issues/11524 --- test_runner/fixtures/neon_fixtures.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test_runner/fixtures/neon_fixtures.py b/test_runner/fixtures/neon_fixtures.py index c846c0950e..3761f29d2f 100644 --- a/test_runner/fixtures/neon_fixtures.py +++ b/test_runner/fixtures/neon_fixtures.py @@ -1322,10 +1322,6 @@ class NeonEnv: log.info("test may use old binaries, ignoring warnings about unknown config items") ps.allowed_errors.append(".*ignoring unknown configuration item.*") - # Allow old software to start until https://github.com/neondatabase/neon/pull/11275 - # lands in the compatiblity snapshot. - ps_cfg["page_service_pipelining"].pop("batching") - self.pageservers.append(ps) cfg["pageservers"].append(ps_cfg)