Skip to content

Commit

Permalink
[#4183] Updated notify to notifyAll (#4204)
Browse files Browse the repository at this point in the history
Fixes #4183

Co-authored-by: AKherde <[email protected]>
  • Loading branch information
ashwin1596 and AKherde authored Jul 19, 2024
1 parent 9be7cc9 commit a6e7073
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ private void release(C client) {
clients.addFirst(client);
}
synchronized (signal) {
signal.notify();
signal.notifyAll();
}
}

Expand Down

0 comments on commit a6e7073

Please sign in to comment.