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
pull/5512/head
Hanefi Onaldi 2021-12-07 03:56:25 +03:00 committed by Hanefi Onaldi
parent a67f518ef0
commit 05a3dfa8a9
1 changed files with 0 additions and 10 deletions

View File

@ -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)