CoapRequestFuture

- Fixed `receiveWake(CoapPacket response)` to use `notifyAll()`
This commit is contained in:
Tristan B. Velloza Kildaire 2023-09-22 18:40:13 +02:00
parent ae0161860a
commit 7a30195d10

View File

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