Skip to content

Commit

Permalink
Fixed response when closing topic list watcher (#16529)
Browse files Browse the repository at this point in the history
  • Loading branch information
merlimat committed Jul 12, 2022
1 parent 09f4333 commit de343c8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ public void handleWatchTopicListClose(CommandWatchTopicListClose commandWatchTop
long requestId = commandWatchTopicListClose.getRequestId();
long watcherId = commandWatchTopicListClose.getWatcherId();
deleteTopicListWatcher(watcherId);
connection.getCommandSender().sendWatchTopicListSuccess(requestId, watcherId, null, null);
connection.getCommandSender().sendSuccess(requestId);
}

public void deleteTopicListWatcher(Long watcherId) {
Expand Down

0 comments on commit de343c8

Please sign in to comment.