From 9e48f21ff1ad783ee3c956d227ac9d5effcb0456 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Fri, 22 Sep 2023 18:32:02 +0200 Subject: [PATCH] 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()` --- 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 ba27780..36abd2f 100644 --- a/source/doap/client/request.d +++ b/source/doap/client/request.d @@ -289,7 +289,7 @@ public class CoapRequestFuture this.response = response; // Wake up the sleepers - this.condition.notify(); + this.condition.notifyAll(); } /**