mirror of https://github.com/citusdata/citus.git
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 classpull/5512/head
parent
a67f518ef0
commit
05a3dfa8a9
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue