From 33a993553d2cace8ec9d3b5793e72d71de7ed7e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Kuzn=C3=ADk?= Date: Tue, 27 Jun 2017 15:31:31 +0100 Subject: [PATCH] Unblock the client when we can't find an upstream If we can't find an upstream, we keep the client around, so it needs to be unblocked. --- servers/lloadd/operation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servers/lloadd/operation.c b/servers/lloadd/operation.c index f7fd24da9f..5f2f66e9a2 100644 --- a/servers/lloadd/operation.c +++ b/servers/lloadd/operation.c @@ -773,5 +773,5 @@ fail: op->o_client_refcnt--; operation_destroy_from_client( op ); CLIENT_UNLOCK_OR_DESTROY(client); - return -1; + return rc; }