Skip to content

Commit cbda7a2

Browse files
committed
Revert "Ignore empty lines"
This reverts commit 0e3e632. This has been causing issues with tests timing out
1 parent 7e40dfd commit cbda7a2

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)