diff options
author | Aleksandr Petrikhin <shmeleine@gmail.com> | 2022-07-06 17:52:38 +0300 |
---|---|---|
committer | Aleksandr Petrikhin <shmeleine@gmail.com> | 2022-07-06 17:52:38 +0300 |
commit | 27a90b61785d0fc30bd1d760f6923e936942bfff (patch) | |
tree | 228a53364dc91ee0faad1640b180ea7dcb405cc4 | |
parent | e4c3ea21c0186d6c240208e46597dc0510ac8fc7 (diff) | |
download | ydb-27a90b61785d0fc30bd1d760f6923e936942bfff.tar.gz |
[LOGBROKER-7580] fixed topic discovery for cdc
ref:9a15aaa74a5d4ff7e9e61e9d1bde2a9317cded73
-rw-r--r-- | ydb/services/persqueue_v1/actors/read_init_auth_actor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/services/persqueue_v1/actors/read_init_auth_actor.cpp b/ydb/services/persqueue_v1/actors/read_init_auth_actor.cpp index ba707b095d..fb746602cd 100644 --- a/ydb/services/persqueue_v1/actors/read_init_auth_actor.cpp +++ b/ydb/services/persqueue_v1/actors/read_init_auth_actor.cpp @@ -50,7 +50,7 @@ void TReadInitAndAuthActor::DescribeTopics(const NActors::TActorContext& ctx, bo } //LOG_DEBUG_S(ctx, NKikimrServices::PQ_READ_PROXY, PQ_LOG_PREFIX << " describe topics: " << JoinSeq(", ", topicNames)); - ctx.Send(MetaCacheId, new TEvDescribeTopicsRequest(topics, showPrivate)); + ctx.Send(MetaCacheId, new TEvDescribeTopicsRequest(topics, true, showPrivate)); } void TReadInitAndAuthActor::Die(const TActorContext& ctx) { |