Skip to content

Commit

Permalink
Merge 7847882 into 37cf155
Browse files Browse the repository at this point in the history
  • Loading branch information
qyryq authored Sep 6, 2024
2 parents 37cf155 + 7847882 commit 9913762
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 9913762

Please sign in to comment.