From 1edd74dda2f023b2393fcc40dbc0c92119f8f653 Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Wed, 28 Sep 2016 02:41:21 -0700 Subject: [PATCH] update: Deprecate the usage of update=yes query param. (#2801) Fixes #2799 --- cmd/update-main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/update-main.go b/cmd/update-main.go index 8aaae1790..bebf1bd2f 100644 --- a/cmd/update-main.go +++ b/cmd/update-main.go @@ -139,10 +139,10 @@ func getReleaseUpdate(updateURL string) (updateMsg updateMessage, errMsg string, switch runtime.GOOS { case "windows": // For windows. - downloadURL = newUpdateURLPrefix + "/minio.exe?update=yes" + downloadURL = newUpdateURLPrefix + "/minio.exe" default: // For all other operating systems. - downloadURL = newUpdateURLPrefix + "/minio?update=yes" + downloadURL = newUpdateURLPrefix + "/minio" } // Initialize update message.