Skip to content

Commit

Permalink
fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikhail Montsev committed Sep 16, 2024
1 parent 62e1d45 commit e45643e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cloud/blockstore/libs/daemon/ydb/bootstrap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,8 @@ void TBootstrapYdb::InitKikimrService()

bool loadCmsConfigs = Configs->Options->LoadCmsConfigs;
if (loadCmsConfigs &&
Configs->StorageConfig->GetHiveProxyFallbackMode() ||
Configs->StorageConfig->GetSSProxyFallbackMode())
(Configs->StorageConfig->GetHiveProxyFallbackMode() ||
Configs->StorageConfig->GetSSProxyFallbackMode()))
{
STORAGE_INFO("Disable loading configs from CMS in emergency mode");
loadCmsConfigs = false;
Expand Down

0 comments on commit e45643e

Please sign in to comment.