Update scylla dependency

This commit is contained in:
Dominik Werder
2025-05-07 14:50:50 +02:00
parent 93c759f11f
commit 7243fff317
19 changed files with 445 additions and 289 deletions

View File

@@ -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" }

View File

@@ -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)