Update scylla dependency
This commit is contained in:
@@ -14,7 +14,7 @@ bytes = "1"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
chrono = "0.4"
|
||||
async-channel = "1.9"
|
||||
async-channel = "2.3.1"
|
||||
parking_lot = "0.12"
|
||||
crc32fast = "1.4"
|
||||
daqbuf-err = { path = "../../../daqbuf-err" }
|
||||
|
||||
@@ -98,6 +98,7 @@ impl StatsChannel {
|
||||
let (tx, rx) = async_channel::bounded(2);
|
||||
taskrun::spawn(async move {
|
||||
let mut rx = rx;
|
||||
let mut rx = std::pin::pin!(rx);
|
||||
while let Some(_) = rx.next().await {}
|
||||
});
|
||||
Self::new(tx)
|
||||
|
||||
Reference in New Issue
Block a user