Skip to content

Commit

Permalink
Add missing override method in AbstractPluginMessageStore
Browse files Browse the repository at this point in the history
  • Loading branch information
RongtongJin committed Jul 12, 2022
1 parent 69b74d2 commit fb02686
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,10 @@ public ConsumeQueueInterface getConsumeQueue(String topic, int queueId) {
return next.getConsumeQueue(topic, queueId);
}

@Override public ConsumeQueueInterface findConsumeQueue(String topic, int queueId) {
return next.findConsumeQueue(topic, queueId);
}

@Override
public BrokerStatsManager getBrokerStatsManager() {
return next.getBrokerStatsManager();
Expand Down

0 comments on commit fb02686

Please sign in to comment.