From 7a30195d1081da35b6d7690ecdfec48e742d26fa Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Fri, 22 Sep 2023 18:40:13 +0200 Subject: [PATCH] CoapRequestFuture - Fixed `receiveWake(CoapPacket response)` to use `notifyAll()` --- source/doap/client/request.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/doap/client/request.d b/source/doap/client/request.d index 4e7fc87..b7dc6fe 100644 --- a/source/doap/client/request.d +++ b/source/doap/client/request.d @@ -306,7 +306,7 @@ public class CoapRequestFuture this.state = RequestState.COMPLETED; // Wake up the sleepers - this.condition.notify(); + this.condition.notifyAll(); } /**