CoapRequestFuture

- Fixed problem where multiple threads calling  `get()` would not all be woken up on the completion of the future due to usage of `notify()` instead of `notifyAll()`
This commit is contained in:
Tristan B. Velloza Kildaire 2023-09-22 18:32:02 +02:00
parent e354a33bcb
commit 9e48f21ff1
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ public class CoapRequestFuture
this.response = response;
// Wake up the sleepers
this.condition.notify();
this.condition.notifyAll();
}
/**