Skip to content

Commit

Permalink
Bump telemetry batteries (#728)
Browse files Browse the repository at this point in the history
* Bump telemetry batteries

* Do not drop tracing handle
  • Loading branch information
Dzejkop committed May 14, 2024
1 parent c83d444 commit 48f9d95
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ axum-server = "0.4.4"
bytes = "1.4.0"
chrono = { version = "0.4.19", features = ["serde"] }
clap = { version = "4.0", features = ["derive"] }
telemetry-batteries = { git = "https://github.com/worldcoin/telemetry-batteries.git", rev = "c3c6921" }
telemetry-batteries = { git = "https://github.com/worldcoin/telemetry-batteries.git", rev = "802a4f39f358e077b11c8429b4c65f3e45b85959" }
config = "0.13.4"
ethers = { version = "2.0.10", features = ["ws", "ipc", "openssl", "abigen"] }
ethers-solc = "2.0.10"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ async fn main() -> eyre::Result<()> {
async fn sequencer_app(args: Args) -> anyhow::Result<()> {
let config = load_config(&args)?;

let _ = init_telemetry(&config.service)?;
let _tracing_shutdown_handle = init_telemetry(&config.service)?;

watch_shutdown_signals();

Expand Down

0 comments on commit 48f9d95

Please sign in to comment.