Skip to content

Commit 9994f8a

Browse files
committed
Merge #83: Revert "Ignore empty lines"
cbda7a2 Revert "Ignore empty lines" (Alekos Filini) Pull request description: This reverts commit 0e3e632. This has been causing issues with tests timing out ACKs for top commit: notmandatory: utACK cbda7a2 Tree-SHA512: ff683e16e623e71f017a361dc85e12fd7ea23d8ebd0f0616dd543aa3b12645540ae82f7eaab233dd846f5e802540064ce6a56e056d225a79e5347d730a736926
2 parents 7e40dfd + cbda7a2 commit 9994f8a

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/raw_client.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -494,11 +494,7 @@ impl<S: Read + Write> RawClient<S> {
494494
}
495495
return Err(Error::SharedIOError(error));
496496
}
497-
trace!("<== {:?}", raw_resp);
498-
499-
if raw_resp.is_empty() {
500-
continue;
501-
}
497+
trace!("<== {}", raw_resp);
502498

503499
let resp: serde_json::Value = serde_json::from_str(&raw_resp)?;
504500

0 commit comments

Comments
 (0)