From fce2d6ddd10d894bae58e2c307dcb1740135bc96 Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Thu, 17 Oct 2019 20:54:02 -0700 Subject: [PATCH] Remote update should be on by default (#8413) Fixes a regression introduced in PR #8351 --- cmd/common-main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/common-main.go b/cmd/common-main.go index bba7ef261..d8f4a30db 100644 --- a/cmd/common-main.go +++ b/cmd/common-main.go @@ -235,7 +235,7 @@ func handleCommonEnvVars() { // In place update is true by default if the MINIO_UPDATE is not set // or is not set to 'off', if MINIO_UPDATE is set to 'off' then // in-place update is off. - globalInplaceUpdateDisabled = strings.EqualFold(env.Get(config.EnvUpdate, "off"), "off") + globalInplaceUpdateDisabled = strings.EqualFold(env.Get(config.EnvUpdate, "on"), "off") // Get WORM environment variable. if worm := env.Get(config.EnvWorm, "off"); worm != "" {