diff options
author | FloatingCrowbar <komels@ydb.tech> | 2025-03-27 20:10:03 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-27 17:10:03 +0000 |
commit | 0afd80e393c8d771ba361d3072a7b59236b3d5bc (patch) | |
tree | b0f0c05df5c9644569bbb616b421b450b6ba4094 | |
parent | 8ce0048f73560f119a1375b78c9d321d68765ca4 (diff) | |
download | ydb-0afd80e393c8d771ba361d3072a7b59236b3d5bc.tar.gz |
Fix kafka auth (#16351)
-rw-r--r-- | ydb/core/kafka_proxy/actors/kafka_sasl_auth_actor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/kafka_proxy/actors/kafka_sasl_auth_actor.cpp b/ydb/core/kafka_proxy/actors/kafka_sasl_auth_actor.cpp index 77a5b40d2a..1149d7b657 100644 --- a/ydb/core/kafka_proxy/actors/kafka_sasl_auth_actor.cpp +++ b/ydb/core/kafka_proxy/actors/kafka_sasl_auth_actor.cpp @@ -169,7 +169,7 @@ void TKafkaSaslAuthActor::SendApiKeyRequest() { } Send(NKikimr::MakeTicketParserID(), new NKikimr::TEvTicketParser::TEvAuthorizeTicket({ .Database = DatabasePath, - .Ticket = "ApiKey " + ClientAuthData.Password, + .Ticket = ticket, .PeerName = TStringBuilder() << Address, .Entries = entries })); |