From 01d6e0ba32d29a3d0df8773f9bf15520a96bbe97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Kaunism=C3=A4ki?= Date: Fri, 19 Jul 2024 10:47:38 +0200 Subject: [PATCH] Update router/src/usage_stats.rs Co-authored-by: Hugo Larcher --- router/src/usage_stats.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/router/src/usage_stats.rs b/router/src/usage_stats.rs index 76411199..2b0ce579 100644 --- a/router/src/usage_stats.rs +++ b/router/src/usage_stats.rs @@ -57,6 +57,7 @@ impl UsageStatsEvent { let client = reqwest::Client::new(); let _ = client .post(TELEMETRY_URL) + .headers(headers) .body(body) .timeout(Duration::from_secs(5)) .send()