From fe09768fecfc9cea471b990ac4be4873fa60b63c Mon Sep 17 00:00:00 2001 From: Eric Allam Date: Tue, 28 Nov 2023 10:39:37 +0000 Subject: [PATCH] Add the blank tls option to the normal redis client as well --- apps/webapp/app/services/runExecutionRateLimiter.server.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/webapp/app/services/runExecutionRateLimiter.server.ts b/apps/webapp/app/services/runExecutionRateLimiter.server.ts index 5a5726805..b482c5c50 100644 --- a/apps/webapp/app/services/runExecutionRateLimiter.server.ts +++ b/apps/webapp/app/services/runExecutionRateLimiter.server.ts @@ -397,6 +397,7 @@ function getRateLimiter() { username: env.REDIS_USERNAME, password: env.REDIS_PASSWORD, enableAutoPipelining: true, + tls: {} }, defaultConcurrency: env.DEFAULT_ORG_EXECUTION_CONCURRENCY_LIMIT, });