Skip to content

Commit

Permalink
[Java] Add streamId information.
Browse files Browse the repository at this point in the history
  • Loading branch information
vyazelenko committed Dec 18, 2024
1 parent d421bde commit 926f56e
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1053,10 +1053,12 @@ void abortControlSessionByImage(final Image image)
{
if (info.image == image)
{
final Subscription subscription = image.subscription();
info.controlSession.abort("request publication image unavailable:" +
" image.correlationId=" + image.correlationId() +
" image.sessionId=" + image.sessionId() +
" channel=" + image.subscription().channel());
" sessionId=" + image.sessionId() +
" streamId=" + subscription.streamId() +
" channel=" + subscription.channel());
break;
}
}
Expand Down

0 comments on commit 926f56e

Please sign in to comment.