Skip to content

Commit

Permalink
Fix scope id handling (#7093)
Browse files Browse the repository at this point in the history
  • Loading branch information
Enjection authored Jul 25, 2024
1 parent 7bc362e commit 8c26a9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ydb/core/config/init/init_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -1119,7 +1119,7 @@ class TInitialConfiguratorImpl
}

void FillData(const NConfig::TCommonAppOptions& cf) {
if (cf.TenantName && ScopeId.IsEmpty()) {
if (!cf.TenantName && ScopeId.IsEmpty()) {
const TString myDomain = DeduceNodeDomain(cf, AppConfig);
for (const auto& domain : AppConfig.GetDomainsConfig().GetDomain()) {
if (domain.GetName() == myDomain) {
Expand Down

0 comments on commit 8c26a9c

Please sign in to comment.