From 02801ecd7885ccad6a83b65c680cdc61580aad64 Mon Sep 17 00:00:00 2001 From: yashsinghcodes Date: Mon, 17 Mar 2025 18:10:06 +0530 Subject: [PATCH] fixed force health url --- backend/go-app/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/go-app/main.go b/backend/go-app/main.go index 42b58256..bbdf54c7 100755 --- a/backend/go-app/main.go +++ b/backend/go-app/main.go @@ -4385,7 +4385,7 @@ func runInitEs(ctx context.Context) { request := http.Request{} // Add the "force=true" query to the fake request - request.URL, err = url.Parse("/api/v1/health/stats?force=true") + request.URL, err = url.Parse("/api/v1/health?force=true") if err != nil { log.Printf("[ERROR] Failed to parse test url for healthstats: %s", err) }