Skip to content

Commit

Permalink
should use the children paths instead of names for removal
Browse files Browse the repository at this point in the history
  • Loading branch information
danigiri committed Oct 29, 2024
1 parent 2837dbd commit ee76469
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public void removeGroup(String groupName) {
if (pathExists(topicDeletionTimePath)) {
// topicDeletionTimePath can contain a list of previously deleted topics
pathsToDelete = new ArrayList<String>(pathsToDelete);
pathsToDelete.addAll(childrenOf(topicDeletionTimePath));
pathsToDelete.addAll(childrenPathsOf(topicDeletionTimePath));
pathsToDelete.add(topicDeletionTimePath);
}
try {
Expand Down

0 comments on commit ee76469

Please sign in to comment.