1
0
Fork 0
mirror of https://codeberg.org/icewind/prometheus-mdns-rs.git synced 2026-06-03 09:54:21 +02:00

increase timeouts

This commit is contained in:
Robin Appelman 2019-12-09 00:53:08 +01:00
commit 23db4e9935

View file

@ -33,8 +33,8 @@ impl<'a> From<&'a Service> for PrometheusService<'a> {
}
}
const TIMEOUT: Duration = Duration::from_secs(60);
const INTERVAL: Duration = Duration::from_secs(15);
const TIMEOUT: Duration = Duration::from_secs(360);
const INTERVAL: Duration = Duration::from_secs(120);
#[tokio::main]