Skip to content

Commit

Permalink
Fix log message in GenerateCookie (#8890)
Browse files Browse the repository at this point in the history
  • Loading branch information
qyryq authored Sep 6, 2024
1 parent 94836dd commit de9b991
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ydb/core/persqueue/ownerinfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ namespace NPQ {
THolder<TEvPersQueue::TEvResponse> response = MakeHolder<TEvPersQueue::TEvResponse>();
response->Record.SetStatus(NMsgBusProxy::MSTATUS_OK);
response->Record.SetErrorCode(NPersQueue::NErrorCode::BAD_REQUEST);
response->Record.SetErrorReason("ownership session is killed by another session with id " + OwnerCookie + " partition id " + partition.OriginalPartitionId);
response->Record.SetErrorReason(TStringBuilder() << "ownership session is killed by another session with id " << OwnerCookie
<< " partition id " << partition.OriginalPartitionId);
ctx.Send(Sender, response.Release());
}
Sender = sender;
Expand Down

0 comments on commit de9b991

Please sign in to comment.