Skip to content

Commit

Permalink
Update scylla/tests/ccm-integration/logged_cli.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Wojciech Przytuła <[email protected]>
  • Loading branch information
dkropachev and wprzytula authored Feb 7, 2025
1 parent 2c4c00b commit f14fa11
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions scylla/tests/ccm-integration/logged_cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,7 @@ impl LoggedCmd {
{
let reader = BufReader::new(stream);
let mut lines = reader.lines();
while let Some(line) = tokio::select! {
line = lines.next_line() => line.unwrap_or(None),
} {
while let Some(line) = lines.next_line().ok().flatten() {
let _ = writer
.lock()
.await
Expand Down

0 comments on commit f14fa11

Please sign in to comment.