Skip to content

Commit 513cd83

Browse files
changed {} to TVector<TString>{}
1 parent 64aeb45 commit 513cd83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ydb/core/viewer/viewer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,14 @@ class TViewer : public TActorBootstrapped<TViewer>, public IViewer {
9393
.ActorSystem = ctx.ActorSystem(),
9494
.ActorId = ctx.SelfID,
9595
.UseAuth = true,
96-
.AllowedSIDs = {},
96+
.AllowedSIDs = TVector<TString>{},
9797
});
9898
mon->RegisterActorPage({
9999
.RelPath = "viewer/json/whoami", // temporary handling of old paths
100100
.ActorSystem = ctx.ActorSystem(),
101101
.ActorId = ctx.SelfID,
102102
.UseAuth = true,
103-
.AllowedSIDs = {},
103+
.AllowedSIDs = TVector<TString>{},
104104
});
105105
mon->RegisterActorPage({
106106
.Title = "Viewer",

0 commit comments

Comments
 (0)