From 1e3417b5b4e4621cb8012bc7cb0d9dcee0d3729d Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 1 Jun 2021 02:27:29 +0100 Subject: [PATCH] mgmtchannel: Tiny error message improvement Signed-off-by: Ian Jackson --- src/mgmtchannel.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mgmtchannel.rs b/src/mgmtchannel.rs index 1b2872f9..a4771e09 100644 --- a/src/mgmtchannel.rs +++ b/src/mgmtchannel.rs @@ -117,7 +117,7 @@ impl ClientMgmtChannel { let (mut resp, mut rbulk) = read.read_withbulk() - .context("read response")?; + .context("failed to read response")?; while let MR::Progress(pi) = resp { resp = (&mut rbulk).read_rmp()?; -- 2.30.2