From 2dcbfe2ef923b6fe0f912bd6abc2e99ac00447ad Mon Sep 17 00:00:00 2001 From: Alexander Date: Fri, 28 Feb 2025 15:01:03 +0100 Subject: [PATCH] feat(integrations): removed 'req' from jwt_spot_secret --- backend/internal/config/common/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/internal/config/common/config.go b/backend/internal/config/common/config.go index a2db40c48..1b1c9c9c3 100644 --- a/backend/internal/config/common/config.go +++ b/backend/internal/config/common/config.go @@ -89,5 +89,5 @@ type HTTP struct { JsonSizeLimit int64 `env:"JSON_SIZE_LIMIT,default=131072"` // 128KB, 1000 for HTTP service UseAccessControlHeaders bool `env:"USE_CORS,default=false"` JWTSecret string `env:"JWT_SECRET,required"` - JWTSpotSecret string `env:"JWT_SPOT_SECRET,required"` + JWTSpotSecret string `env:"JWT_SPOT_SECRET"` }