From a52383d0d3ce6dbc9a80e75feb1b92c7acd44bd8 Mon Sep 17 00:00:00 2001 From: John Spray Date: Thu, 8 Oct 2015 13:04:04 +0100 Subject: [PATCH] client: don't mark_down on command reply I guess this was handy when issuing single commands from the CLI, but it breaks things badly when trying to issue commands from a client that's also going to carry on and do client IO. Signed-off-by: John Spray --- src/client/Client.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/client/Client.cc b/src/client/Client.cc index 669a835a1f3..e313691fb9e 100644 --- a/src/client/Client.cc +++ b/src/client/Client.cc @@ -5005,8 +5005,6 @@ void Client::handle_command_reply(MCommandReply *m) *op.outs = m->rs; } - op.con->mark_down(); - if (op.on_finish) { op.on_finish->complete(m->r); } -- 2.47.3