Skip to content

Commit

Permalink
[ISSUE #6343] fix consumeQueueExtDir not deleted when deleting topic (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
redlsz authored Mar 15, 2023
1 parent 94db42a commit 4a4626d
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 4a4626d

Please sign in to comment.