Skip to content

Commit

Permalink
Fix tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
slinkydeveloper committed Mar 20, 2023
1 parent 2ac7894 commit 81c3a26
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ void close() {
this.readyResultPublisher.abort(ProtocolException.CLOSED);
this.sideEffectAckPublisher.abort(ProtocolException.CLOSED);
this.entriesQueue.abort(ProtocolException.CLOSED);
this.span.end();
}
}

Expand All @@ -214,6 +215,7 @@ void fail(Throwable cause) {
this.readyResultPublisher.abort(cause);
this.sideEffectAckPublisher.abort(cause);
this.entriesQueue.abort(cause);
this.span.end();
}
}

Expand Down

0 comments on commit 81c3a26

Please sign in to comment.