Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ydb/core/viewer/json_nodes.h
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ class TJsonNodes : public TViewerPipeClient<TJsonNodes> {
case TSchemeCacheNavigate::EKind::KindExtSubdomain:
return true;
case TSchemeCacheNavigate::EKind::KindPath:
return entry.CreateStep == 0;
return entry.Self->Info.GetPathId() == NSchemeShard::RootPathId;
default:
return false;
}
Expand All @@ -416,7 +416,7 @@ class TJsonNodes : public TViewerPipeClient<TJsonNodes> {
if (FilterTenant.empty()) {
RequestForTenant(path);
}

if (entry.DomainInfo->ResourcesDomainKey && entry.DomainInfo->DomainKey != entry.DomainInfo->ResourcesDomainKey) {
TPathId resourceDomainKey(entry.DomainInfo->ResourcesDomainKey);
BLOG_TRACE("Requesting navigate for resource domain " << resourceDomainKey);
Expand Down