From 4af112109590097d1226aefde4f95fad178c8c5a Mon Sep 17 00:00:00 2001 From: Daniil Cherednik Date: Tue, 21 May 2024 11:45:12 +0000 Subject: [PATCH] fix --- .../tx/schemeshard/schemeshard__operation_create_cdc_stream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ydb/core/tx/schemeshard/schemeshard__operation_create_cdc_stream.cpp b/ydb/core/tx/schemeshard/schemeshard__operation_create_cdc_stream.cpp index 32172f6dd327..cda337d141db 100644 --- a/ydb/core/tx/schemeshard/schemeshard__operation_create_cdc_stream.cpp +++ b/ydb/core/tx/schemeshard/schemeshard__operation_create_cdc_stream.cpp @@ -988,7 +988,7 @@ TVector CreateNewCdcStream(TOperationId opId, const TTxTran auto it = tablePath->GetChildren().find(op.GetIndexName()); if (it == tablePath->GetChildren().end()) { return {CreateReject(opId, NKikimrScheme::StatusSchemeError, - "requested particular path hasn't been found")}; + "requested particular path hasn't been found")}; } candidates.emplace_back(it->first); }