mirror of
https://github.com/apache/rocketmq.git
synced 2026-08-30 18:10:44 +08:00
[ISSUE#4950] fix wrong typo about DLedger (#4951)
* style(controller): fix the wrong typo about DLedger 1. fix the wrong typo about DLedger * style(controller): fix the wrong typo about DLedger 1. fix the wrong typo about DLedger
This commit is contained in:
+4
-4
@@ -36,13 +36,13 @@ public class DLedgerControllerStateMachine implements StateMachine {
|
||||
private static final InternalLogger log = InternalLoggerFactory.getLogger(LoggerName.CONTROLLER_LOGGER_NAME);
|
||||
private final ReplicasInfoManager replicasInfoManager;
|
||||
private final EventSerializer eventSerializer;
|
||||
private final String dledgerId;
|
||||
private final String dLedgerId;
|
||||
|
||||
public DLedgerControllerStateMachine(final ReplicasInfoManager replicasInfoManager,
|
||||
final EventSerializer eventSerializer, final String dledgerId) {
|
||||
final EventSerializer eventSerializer, final String dLedgerId) {
|
||||
this.replicasInfoManager = replicasInfoManager;
|
||||
this.eventSerializer = eventSerializer;
|
||||
this.dledgerId = dledgerId;
|
||||
this.dLedgerId = dLedgerId;
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -57,7 +57,7 @@ public class DLedgerControllerStateMachine implements StateMachine {
|
||||
}
|
||||
applyingSize++;
|
||||
}
|
||||
log.info("Apply {} events on controller {}", applyingSize, this.dledgerId);
|
||||
log.info("Apply {} events on controller {}", applyingSize, this.dLedgerId);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user