We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45dd216 commit 7ea1c14Copy full SHA for 7ea1c14
ydb/tools/cfg/dynamic.py
@@ -270,7 +270,8 @@ def make_configure_request(self, domain):
270
if self._cluster_details.use_auto_config:
271
app_config.ActorSystemConfig.CpuCount = self._cluster_details.dynamic_cpu_count
272
app_config.ActorSystemConfig.NodeType = app_config.ActorSystemConfig.ENodeType.Value('COMPUTE')
273
- app_config.ActorSystemConfig.ForceIOPoolThreads = self._cluster_details.force_io_pool_threads
+ if self._cluster_details.force_io_pool_threads is not None:
274
+ app_config.ActorSystemConfig.ForceIOPoolThreads = self._cluster_details.force_io_pool_threads
275
action.AddConfigItem.ConfigItem.Config.CopyFrom(app_config)
276
action.AddConfigItem.EnableAutoSplit = True
277
0 commit comments