From 68af25fbc3835cb6ffe35bfdbc2e4387bed92744 Mon Sep 17 00:00:00 2001 From: Gabriel MABILLE Date: Mon, 7 Oct 2024 16:31:09 +0200 Subject: [PATCH] Update pkg/services/authz/config.go --- pkg/services/authz/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/services/authz/config.go b/pkg/services/authz/config.go index 5d56b04e2a0..8d4a8f51d29 100644 --- a/pkg/services/authz/config.go +++ b/pkg/services/authz/config.go @@ -44,7 +44,7 @@ func ReadCfg(cfg *setting.Cfg) (*Cfg, error) { token := grpcClientAuthSection.Key("token").MustString("") tokenExchangeURL := grpcClientAuthSection.Key("token_exchange_url").MustString("") - tokenNamespace := grpcClientAuthSection.Key("token_namespace").MustString("stack-" + cfg.StackID) + tokenNamespace := grpcClientAuthSection.Key("token_namespace").MustString("stacks-" + cfg.StackID) // When running in cloud mode, the token and tokenExchangeURL are required. if cfg.StackID != "" && token == "" && tokenExchangeURL == "" {