Skip to content

Commit

Permalink
[fix][broker] Fix log typo in ManagedCursorImpl (apache#17199)
Browse files Browse the repository at this point in the history
  • Loading branch information
hrsakai authored Aug 22, 2022
1 parent e60c7f1 commit 4c5695f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1433,7 +1433,7 @@ public synchronized void readEntryFailed(ManagedLedgerException mle, Object ctx)
.forEach(p ->{
if (((PositionImpl) p).compareTo(this.readPosition) == 0) {
this.setReadPosition(this.readPosition.getNext());
log.warn("[{}][{}] replayPosition{} equals readPosition{}," + " need set next readPositio",
log.warn("[{}][{}] replayPosition{} equals readPosition{}," + " need set next readPosition",
ledger.getName(), name, p, this.readPosition);
}
ledger.asyncReadEntry((PositionImpl) p, cb, ctx);
Expand Down

0 comments on commit 4c5695f

Please sign in to comment.