You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by pe...@apache.org on 2022/08/22 01:10:09 UTC

[pulsar] branch master updated: [fix][broker] Fix log typo in ManagedCursorImpl (#17199)

This is an automated email from the ASF dual-hosted git repository.

penghui pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new 4c5695f5af6 [fix][broker] Fix log typo in ManagedCursorImpl (#17199)
4c5695f5af6 is described below

commit 4c5695f5af60dd74ec90ce5e10bdb2655863bd43
Author: hrsakai <hs...@yahoo-corp.jp>
AuthorDate: Mon Aug 22 10:09:36 2022 +0900

    [fix][broker] Fix log typo in ManagedCursorImpl (#17199)
---
 .../main/java/org/apache/bookkeeper/mledger/impl/ManagedCursorImpl.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/managed-ledger/src/main/java/org/apache/bookkeeper/mledger/impl/ManagedCursorImpl.java b/managed-ledger/src/main/java/org/apache/bookkeeper/mledger/impl/ManagedCursorImpl.java
index ef1c25f458e..72b8dc5a8e2 100644
--- a/managed-ledger/src/main/java/org/apache/bookkeeper/mledger/impl/ManagedCursorImpl.java
+++ b/managed-ledger/src/main/java/org/apache/bookkeeper/mledger/impl/ManagedCursorImpl.java
@@ -1433,7 +1433,7 @@ public class ManagedCursorImpl implements ManagedCursor {
                 .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);