From 00e79097d6e2561bf7c862e4d928e14db2fa09ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szak=C3=A1ts=20Alp=C3=A1r=20Zsolt?= Date: Thu, 21 Aug 2025 15:15:27 +0200 Subject: [PATCH] Fixes telemetry config endpoint call Removes redundant verb from the telemetry config endpoint URI, ensuring the request is correctly routed. --- Source/ProofOfConcept/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/ProofOfConcept/Program.cs b/Source/ProofOfConcept/Program.cs index ebef76f..ad7411e 100644 --- a/Source/ProofOfConcept/Program.cs +++ b/Source/ProofOfConcept/Program.cs @@ -397,7 +397,7 @@ app.MapGet("/Status", async ([FromServices] ILogger logger, [FromS string statusResponseContent = await statusResponse.Content.ReadAsStringAsync(); logger.LogTrace("Fleet status response: {statusResponseContent}", statusResponseContent); - HttpResponseMessage rspmsg = await client.GetAsync($"GET /api/1/vehicles/{vin}/fleet_telemetry_config"); + HttpResponseMessage rspmsg = await client.GetAsync($"/api/1/vehicles/{vin}/fleet_telemetry_config"); string rsp = await rspmsg.Content.ReadAsStringAsync(); logger.LogInformation("Telemetry config: {response}", rsp);