From 68e91d9206e2bc53c5b65ff984595fc6198f197d Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Fri, 14 Dec 2018 15:38:31 -0800 Subject: [PATCH] ircd::client: Broadcast the notify to this dock here. --- ircd/client.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircd/client.cc b/ircd/client.cc index 598c532b8..268241b51 100644 --- a/ircd/client.cc +++ b/ircd/client.cc @@ -201,7 +201,7 @@ ircd::client::close_all() { c->close(net::dc::RST, [c](const auto &e) { - dock.notify_one(); + dock.notify_all(); }); } catch(const std::exception &e)