From a96ec8451397187e2e3426f5b33e0ccd08541142 Mon Sep 17 00:00:00 2001 From: Santhana Krishnan Date: Mon, 22 Sep 2025 11:17:04 +0000 Subject: [PATCH 1/2] jwt-extract-issue Signed-off-by: Santhana Krishnan --- charts/mcp-stack/values.yaml | 2 +- mcpgateway/routers/auth.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/mcp-stack/values.yaml b/charts/mcp-stack/values.yaml index 5d7078677..2d0cae23e 100644 --- a/charts/mcp-stack/values.yaml +++ b/charts/mcp-stack/values.yaml @@ -636,7 +636,7 @@ mcpFastTimeServer: replicaCount: 2 image: repository: ghcr.io/ibm/fast-time-server - tag: "0.7.0" + tag: "0.5.0" pullPolicy: IfNotPresent port: 8080 diff --git a/mcpgateway/routers/auth.py b/mcpgateway/routers/auth.py index c51939551..476040acb 100644 --- a/mcpgateway/routers/auth.py +++ b/mcpgateway/routers/auth.py @@ -148,7 +148,7 @@ async def login(login_request: LoginRequest, request: Request, db: Session = Dep raise HTTPException(status_code=status.HTTP_401_UNAUTHORIZED, detail="Invalid email or password") # Create session JWT token (Tier 1 authentication) - access_token, expires_in = create_access_token(user) + access_token, expires_in = await create_access_token(user) logger.info(f"User {email} authenticated successfully") From b286c2f424f11519d35e1a0f4306fee466e9da4f Mon Sep 17 00:00:00 2001 From: Veeresh K Date: Thu, 25 Sep 2025 09:32:21 +0000 Subject: [PATCH 2/2] Update fast-time-server image tag to 0.7.0 Signed-off-by: Veeresh K --- charts/mcp-stack/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/mcp-stack/values.yaml b/charts/mcp-stack/values.yaml index 2d0cae23e..5d7078677 100644 --- a/charts/mcp-stack/values.yaml +++ b/charts/mcp-stack/values.yaml @@ -636,7 +636,7 @@ mcpFastTimeServer: replicaCount: 2 image: repository: ghcr.io/ibm/fast-time-server - tag: "0.5.0" + tag: "0.7.0" pullPolicy: IfNotPresent port: 8080