We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a123001 commit e7d75c3Copy full SHA for e7d75c3
2 files changed
oxybox/Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "oxybox"
3
-version = "1.0.3"
+version = "1.0.4"
4
authors = ["Thomas Luijken"]
5
categories = ["command-line-utilities"]
6
description = "A drop in replacement for blackbox exporter for Prometheus, with support for TLS and HTTP/3."
oxybox/src/http_probe/probe.rs
@@ -256,9 +256,10 @@ pub async fn run_probe_loop(
256
}
257
258
for handle in handles {
259
- let _ = handle.await;
+ if let Err(join_err) = handle.await {
260
+ log::error!("Task panicked: {:?}", join_err);
261
+ }
262
-
263
sleep(Duration::from_secs(org_config.polling_interval_seconds)).await;
264
265
0 commit comments