From 67b5458894f0c66b1ce8288d70fdf632a7f69c50 Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Tue, 15 Mar 2022 15:58:02 +0100 Subject: [PATCH] fix graph jwt secret from `OCS_JWT_SECRET` to `GRAPH_JWT_SECRET` --- graph/pkg/config/reva.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph/pkg/config/reva.go b/graph/pkg/config/reva.go index 31f48fbb624..aeb307f183f 100644 --- a/graph/pkg/config/reva.go +++ b/graph/pkg/config/reva.go @@ -7,5 +7,5 @@ type Reva struct { // TokenManager is the config for using the reva token manager type TokenManager struct { - JWTSecret string `ocisConfig:"jwt_secret" env:"OCIS_JWT_SECRET;OCS_JWT_SECRET"` + JWTSecret string `ocisConfig:"jwt_secret" env:"OCIS_JWT_SECRET;GRAPH_JWT_SECRET"` }