Skip to content

Commit

Permalink
fix(store): fix consumeQueueExtDir not deleted when deleting topic
Browse files Browse the repository at this point in the history
  • Loading branch information
redlsz committed Mar 14, 2023
1 parent fac699e commit 1a90a54
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1357,7 +1357,7 @@ public int deleteTopics(final Set<String> deleteTopics) {
// destroy consume queue dir
String consumeQueueDir = StorePathConfigHelper.getStorePathConsumeQueue(
this.messageStoreConfig.getStorePathRootDir()) + File.separator + topic;
String consumeQueueExtDir = StorePathConfigHelper.getStorePathConsumeQueue(
String consumeQueueExtDir = StorePathConfigHelper.getStorePathConsumeQueueExt(
this.messageStoreConfig.getStorePathRootDir()) + File.separator + topic;
String batchConsumeQueueDir = StorePathConfigHelper.getStorePathBatchConsumeQueue(
this.messageStoreConfig.getStorePathRootDir()) + File.separator + topic;
Expand Down

0 comments on commit 1a90a54

Please sign in to comment.