Skip to content

Commit 5e6a53e

Browse files
author
Natalie Bridgers
committed
bump rocketman
1 parent 9bfee77 commit 5e6a53e

3 files changed

Lines changed: 47 additions & 176 deletions

File tree

Cargo.lock

Lines changed: 45 additions & 173 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,14 @@ edition = "2024"
66

77
[dependencies]
88
tokio = { version = "1", features = ["full"] }
9-
rocketman = "0.3.0"
9+
rocketman = "0.4.0"
1010
metrics = "0.24.2"
1111
metrics-exporter-prometheus = "0.17.0"
1212
tracing = "0.1"
1313
tracing-subscriber = "0.3"
1414
serde = { version = "1.0", features = ["derive"] }
1515
serde_json = "1.0"
1616
anyhow = "1.0"
17-
genai = "0.2.4"
1817
async-trait = "0.1.88"
1918
dotenvy = "0.15.7"
2019
jacquard = { git = "https://tangled.org/nonbinary.computer/jacquard"}

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ async fn main() {
106106

107107
tokio::spawn(async move {
108108
info!("Starting worker thread {}", i);
109-
while let Ok(message) = msg_rx_clone.recv_async().await {
109+
while let Ok(message) = msg_rx_clone.recv().await {
110110
if let Err(e) = handler::handle_message(
111111
message,
112112
&ingestors_clone,

0 commit comments

Comments
 (0)