Skip to content

Commit ab7fa4b

Browse files
committed
Some corrections for CI.
1 parent cd5307c commit ab7fa4b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

linera-views/src/backends/rocks_db.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ impl RocksDbStoreInternal {
632632
}
633633
}
634634
if let Err(error) = iter.status() {
635-
let _ = tx.blocking_send(Err(error.into()));
635+
_ = tx.blocking_send(Err(error.into()));
636636
}
637637
});
638638
while let Some(item) = rx.recv().await {
@@ -681,7 +681,7 @@ impl RocksDbStoreInternal {
681681
}
682682
}
683683
if let Err(error) = iter.status() {
684-
let _ = tx.blocking_send(Err(error.into()));
684+
_ = tx.blocking_send(Err(error.into()));
685685
}
686686
});
687687
while let Some(item) = rx.recv().await {

0 commit comments

Comments
 (0)