diff --git a/backend/src/v2/objectstore/config.go b/backend/src/v2/objectstore/config.go index cc8d6372eb6..602357b1864 100644 --- a/backend/src/v2/objectstore/config.go +++ b/backend/src/v2/objectstore/config.go @@ -18,12 +18,13 @@ package objectstore import ( "encoding/json" "fmt" - "github.com/golang/glog" "os" "path" "regexp" "strconv" "strings" + + "github.com/golang/glog" ) // The endpoint uses Kubernetes service DNS name with namespace: @@ -228,6 +229,8 @@ func StructuredS3Params(p map[string]string) (*S3Params, error) { return nil, err } sparams.ForcePathStyle = boolVal + } else { + sparams.ForcePathStyle = true } return sparams, nil }