diff options
author | kruall <kruall@ydb.tech> | 2023-07-21 17:09:34 +0300 |
---|---|---|
committer | kruall <kruall@ydb.tech> | 2023-07-21 17:09:34 +0300 |
commit | b49036f50786aa205e65e78fa2dcff43d14490a2 (patch) | |
tree | 85d5979ec897a4040beb0247377ab36a798dbee3 | |
parent | 5f1ac02c68a48f445fd9663b466f73d7c057d849 (diff) | |
download | ydb-b49036f50786aa205e65e78fa2dcff43d14490a2.tar.gz |
Fix generating broken as config, KIKIMR-18789
-rw-r--r-- | ydb/core/driver_lib/run/auto_config_initializer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/driver_lib/run/auto_config_initializer.cpp b/ydb/core/driver_lib/run/auto_config_initializer.cpp index 77fe5d2b5cc..62d5e97ea15 100644 --- a/ydb/core/driver_lib/run/auto_config_initializer.cpp +++ b/ydb/core/driver_lib/run/auto_config_initializer.cpp @@ -290,7 +290,7 @@ namespace NKikimr::NAutoConfigInitializer { } executor->SetType(NKikimrConfig::TActorSystemConfig::TExecutor::BASIC); executor->SetThreads(threadsCount); - executor->SetThreads(Max(cfg.MaxThreadCount, threadsCount)); + executor->SetMaxThreads(Max(cfg.MaxThreadCount, threadsCount)); executor->SetPriority(priorities[poolIdx]); executor->SetName(names[poolIdx]); |