From b1b0aadabf5ce16021bb025bd312a4ad4beff285 Mon Sep 17 00:00:00 2001 From: Shubhendu Date: Thu, 23 Mar 2023 12:54:58 +0530 Subject: [PATCH] Revert query parameter `src` from diag upload if callhome enabled (#16881) --- cmd/callhome.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/callhome.go b/cmd/callhome.go index 0b155a428..b1a10da42 100644 --- a/cmd/callhome.go +++ b/cmd/callhome.go @@ -168,7 +168,7 @@ func sendHealthInfo(ctx context.Context, healthInfo madmin.HealthInfo) error { } filename := fmt.Sprintf("health_%s.json.gz", UTCNow().Format("20060102150405")) - url += "?filename=" + filename + "&src=callhome" + url += "?filename=" + filename _, err := globalSubnetConfig.Upload(url, filename, createHealthJSONGzip(ctx, healthInfo)) return err