Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
qianye1001 committed Jan 2, 2025
1 parent f7b5628 commit d3ab0e8
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@ public CleanConsumeQueueService createCleanConsumeQueueService() {
return new RocksDBCleanConsumeQueueService();
}

@Override
public FlushConsumeQueueService createFlushConsumeQueueService() {
return new RocksDBFlushConsumeQueueService();
}

@Override
public CorrectLogicOffsetService createCorrectLogicOffsetService() {
return new RocksDBCorrectLogicOffsetService();
Expand Down Expand Up @@ -193,7 +198,6 @@ public void loadAndStartConsumerServiceOnly() {
throw new RuntimeException("load consume queue failed");
}
super.loadCheckPoint();
this.flushConsumeQueueService.start();
this.consumeQueueStore.start();
} catch (Exception e) {
ERROR_LOG.error("loadAndStartConsumerServiceOnly error", e);
Expand Down

0 comments on commit d3ab0e8

Please sign in to comment.