Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fix] [client] Messages lost due to TopicListWatcher reconnect #21853

Merged
merged 12 commits into from
Jan 8, 2024
Prev Previous commit
Next Next commit
address comments
  • Loading branch information
poorbarcode committed Jan 8, 2024
commit 42cda95eaa1210dd3e461d263d037d5aae6d8908
Original file line number Diff line number Diff line change
Expand Up @@ -712,6 +712,7 @@ protected void sleepSeconds(int seconds){
try {
Thread.currentThread().sleep(1000 * seconds);
} catch (InterruptedException e) {
log.warn("This thread has been interrupted", e);
Thread.currentThread().interrupt();
}
}
Expand Down
Loading