From 1cb0ee052d61704c156bd3c39ec0ed0bd38a4f29 Mon Sep 17 00:00:00 2001 From: Lilith Date: Sat, 10 Jan 2026 22:41:30 -0800 Subject: [PATCH] =?UTF-8?q?feat(sso):=20=E2=9C=A8=20remove=20redis=20auth?= =?UTF-8?q?=20credentials=20for=20throttler?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../security/throttling/throttler-storage-redis.service.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/features/sso/backend-api/src/common/security/throttling/throttler-storage-redis.service.ts b/features/sso/backend-api/src/common/security/throttling/throttler-storage-redis.service.ts index 463c68f67..a178e3ab2 100644 --- a/features/sso/backend-api/src/common/security/throttling/throttler-storage-redis.service.ts +++ b/features/sso/backend-api/src/common/security/throttling/throttler-storage-redis.service.ts @@ -25,8 +25,7 @@ export class ThrottlerStorageRedisService host: redisConfig.host, port: redisConfig.port, }, - username: 'default', - password: '', // Empty string signals no authentication + // No username or password - completely disable authentication }); }