Skip to content

Commit fd05b8d

Browse files
committed
better naming convention
1 parent e6e2aa7 commit fd05b8d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

managed-ledger/src/main/java/org/apache/bookkeeper/mledger/impl/ManagedCursorImpl.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3296,7 +3296,7 @@ public ManagedLedgerConfig getConfig() {
32963296
*
32973297
* @return true if the cursor reset in progress
32983298
*/
3299-
public boolean resetCursorInProgress() {
3299+
public boolean isResetCursorInProgress() {
33003300
return RESET_CURSOR_IN_PROGRESS_UPDATER.get(this) == TRUE;
33013301
}
33023302
}

pulsar-broker/src/main/java/org/apache/pulsar/broker/service/persistent/PersistentDispatcherSingleActiveConsumer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ private synchronized void internalConsumerFlow(Consumer consumer) {
280280
log.debug("[{}-{}] Ignoring flow control message since consumer is waiting for cursor to be rewinded",
281281
name, consumer);
282282
}
283-
} else if (((ManagedCursorImpl) cursor).resetCursorInProgress()) {
283+
} else if (((ManagedCursorImpl) cursor).isResetCursorInProgress()) {
284284
if (log.isDebugEnabled()) {
285285
log.debug("[{}-{}] Ignoring flow control message since cursor reset in progress - cursor {}",
286286
name, consumer, cursor.getName());

0 commit comments

Comments
 (0)