[#266] Move trimming namespaces name into fetch function

Signed-off-by: Denis Kirillov <d.kirillov@yadro.com>
This commit is contained in:
Denis Kirillov 2023-12-14 16:12:10 +03:00
parent 9272f4e108
commit 0850d21ff3
2 changed files with 4 additions and 5 deletions

View file

@ -12,7 +12,6 @@ import (
"os"
"os/signal"
"runtime/debug"
"strings"
"sync"
"syscall"
"time"
@ -368,10 +367,6 @@ func (s *appSettings) IsDefaultNamespace(ns string) bool {
}
func (s *appSettings) setDefaultNamespaces(namespaces []string) {
for i := range namespaces { // to be set namespaces in env variable as `S3_GW_KLUDGE_DEFAULT_NAMESPACES="" "root"`
namespaces[i] = strings.Trim(namespaces[i], "\"")
}
s.mu.Lock()
s.defaultNamespaces = namespaces
s.mu.Unlock()