From cbda7a22dbb95595bbb86653d21b1ac24640e531 Mon Sep 17 00:00:00 2001 From: Alekos Filini Date: Wed, 24 Aug 2022 14:35:38 +0200 Subject: [PATCH] Revert "Ignore empty lines" This reverts commit 0e3e6325e65749c0446fbede99d763b98321362d. This has been causing issues with tests timing out --- src/raw_client.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/raw_client.rs b/src/raw_client.rs index a0e5399..93eeba9 100644 --- a/src/raw_client.rs +++ b/src/raw_client.rs @@ -494,11 +494,7 @@ impl RawClient { } return Err(Error::SharedIOError(error)); } - trace!("<== {:?}", raw_resp); - - if raw_resp.is_empty() { - continue; - } + trace!("<== {}", raw_resp); let resp: serde_json::Value = serde_json::from_str(&raw_resp)?;