From 64d563036b136ae5409bc924039d62a57389b0ff Mon Sep 17 00:00:00 2001 From: Ignat Loskutov Date: Wed, 15 May 2024 17:22:05 +0200 Subject: [PATCH] TReadInitAndAuthActor: fix unmatched quotation marks in error messages --- ydb/services/persqueue_v1/actors/read_init_auth_actor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 9601b3ea9c5d..91bf31dd8895 100644 --- a/ydb/services/persqueue_v1/actors/read_init_auth_actor.cpp +++ b/ydb/services/persqueue_v1/actors/read_init_auth_actor.cpp @@ -204,7 +204,7 @@ bool TReadInitAndAuthActor::CheckTopicACL( //TODO : add here checking of client-service-type password. Provide it via API-call. if (!NPQ::HasConsumer(pqDescr.GetPQTabletConfig(), ClientId)) { CloseSession( - TStringBuilder() << "no read rule provided for consumer '" << ClientPath << "' in topic '" << topic << "' in current cluster '" << LocalCluster, + TStringBuilder() << "no read rule provided for consumer '" << ClientPath << "' in topic '" << topic << "' in current cluster '" << LocalCluster << "'", PersQueue::ErrorCode::BAD_REQUEST, ctx ); return false;