From b042574e4530288ca60a1568e61e3a04219d100f Mon Sep 17 00:00:00 2001 From: Ingo Oppermann Date: Tue, 23 Aug 2022 19:02:01 +0300 Subject: [PATCH] Fix exposing password --- config/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/types.go b/config/types.go index 2897d593..15be12d5 100644 --- a/config/types.go +++ b/config/types.go @@ -339,7 +339,7 @@ func (s *s3StorageListValue) String() string { } if len(t.Auth.Password) != 0 { - v.Set("password", t.Auth.Password) + v.Set("password", "---") } }