diff options
author | shmel1k <shmel1k@ydb.tech> | 2022-07-08 17:36:52 +0300 |
---|---|---|
committer | shmel1k <shmel1k@ydb.tech> | 2022-07-08 17:36:52 +0300 |
commit | 31f175a0d4c341052b03de84fabb56c2dc46ccdc (patch) | |
tree | b7b0558b28d887126739081bf20868d947e7d7b8 | |
parent | 7d6b089d38c2fe4d277a0cbf5cc7137e02e5dcbb (diff) | |
download | ydb-31f175a0d4c341052b03de84fabb56c2dc46ccdc.tar.gz |
[] enable 'topic' by default
-rw-r--r-- | ydb/core/driver_lib/run/run.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/driver_lib/run/run.cpp b/ydb/core/driver_lib/run/run.cpp index fa5d2187c0..33ebb33854 100644 --- a/ydb/core/driver_lib/run/run.cpp +++ b/ydb/core/driver_lib/run/run.cpp @@ -524,7 +524,7 @@ void TKikimrRunner::InitializeGRpc(const TKikimrRunConfig& runConfig) { bool hasPQv1 = services.empty(); names["pqv1"] = &hasPQv1; bool hasTopic = false; - names["topic_service"] = &hasTopic; + names["topic"] = &hasTopic; bool hasPQCD = services.empty(); names["pqcd"] = &hasPQCD; bool hasS3Internal = false; |