From 05a3dfa8a93754ac2aec95f3079bfe2eacb2d47d Mon Sep 17 00:00:00 2001 From: Hanefi Onaldi Date: Tue, 7 Dec 2021 03:56:25 +0300 Subject: [PATCH] Remove redundant arbitrary config class We had 2 class definitions for CitusCacheManyConnectionsConfig, where one of them was a copy of CitusSmallCopyBuffersConfig. This commit leaves the intended class definition that configures caching many connections, and removes the one that is a copy of another class --- src/test/regress/citus_tests/config.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/test/regress/citus_tests/config.py b/src/test/regress/citus_tests/config.py index c80b3d14c..e783b3a46 100644 --- a/src/test/regress/citus_tests/config.py +++ b/src/test/regress/citus_tests/config.py @@ -272,16 +272,6 @@ class CitusUnusualExecutorConfig(CitusMXBaseClusterConfig): } -class CitusCacheManyConnectionsConfig(CitusMXBaseClusterConfig): - def __init__(self, arguments): - super().__init__(arguments) - self.new_settings = { - "citus.copy_switchover_threshold": "1B", - "citus.local_copy_flush_threshold": "1B", - "citus.remote_copy_flush_threshold": "1B", - } - - class CitusSmallCopyBuffersConfig(CitusMXBaseClusterConfig): def __init__(self, arguments): super().__init__(arguments)