From 9b3ae84993d2493ff0761efbcda0b9d188ed6d9e Mon Sep 17 00:00:00 2001 From: nicm Date: Sat, 15 Oct 2016 00:01:01 +0000 Subject: Drain notifys once at the end of the server loop instead of doing it from the end of every command queue (which could be nested). --- server.c | 1 + 1 file changed, 1 insertion(+) (limited to 'server.c') diff --git a/server.c b/server.c index bcb596b8..e6d1c09f 100644 --- a/server.c +++ b/server.c @@ -192,6 +192,7 @@ server_loop(void) struct client *c; server_client_loop(); + notify_drain(); if (!options_get_number(global_options, "exit-unattached")) { if (!RB_EMPTY(&sessions)) -- cgit