summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ydb/core/viewer/viewer.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ydb/core/viewer/viewer.cpp b/ydb/core/viewer/viewer.cpp
index 1849cf53a3b..bcc36eae28a 100644
--- a/ydb/core/viewer/viewer.cpp
+++ b/ydb/core/viewer/viewer.cpp
@@ -140,7 +140,7 @@ public:
.ActorSystem = ctx.ActorSystem(),
.ActorId = ctx.SelfID,
.UseAuth = true,
- .AllowedSIDs = monitoringAllowedSIDs,
+ .AllowedSIDs = databaseAllowedSIDs,
});
mon->RegisterActorPage({
.RelPath = "pdisk",
@@ -154,14 +154,14 @@ public:
.ActorSystem = ctx.ActorSystem(),
.ActorId = ctx.SelfID,
.UseAuth = true,
- .AllowedSIDs = monitoringAllowedSIDs,
+ .AllowedSIDs = databaseAllowedSIDs,
});
mon->RegisterActorPage({
.RelPath = "query",
.ActorSystem = ctx.ActorSystem(),
.ActorId = ctx.SelfID,
.UseAuth = true,
- .AllowedSIDs = monitoringAllowedSIDs,
+ .AllowedSIDs = databaseAllowedSIDs,
});
mon->RegisterActorPage({
.RelPath = "scheme",
@@ -218,7 +218,7 @@ public:
.Path = name,
.Handler = ctx.SelfID,
.UseAuth = true,
- .AllowedSIDs = viewerAllowedSIDs,
+ .AllowedSIDs = databaseAllowedSIDs,
});
}
}