diff --git a/pkg/config/parser/parse.go b/pkg/config/parser/parse.go index ebd5e321fd..bc6c5eaf81 100644 --- a/pkg/config/parser/parse.go +++ b/pkg/config/parser/parse.go @@ -103,6 +103,10 @@ func EnsureCommons(cfg *config.Config) { // copy url signing secret to the commons part if set if cfg.URLSigningSecret != "" { cfg.Commons.URLSigningSecret = cfg.URLSigningSecret + } else { + // fall back to transfer secret for url signing secret to avoid + // issues when upgradin from an older release + cfg.Commons.URLSigningSecret = cfg.TransferSecret } // copy metadata user id to the commons part if set