diff --git a/src/utils/redis.ts b/src/utils/redis.ts index e1bc2e9..7627d0f 100644 --- a/src/utils/redis.ts +++ b/src/utils/redis.ts @@ -31,7 +31,7 @@ if (config.redis?.enabled) { client.connect(); exportClient = client; - const timeoutDuration = 200; + const timeoutDuration = 40; const get = client.get.bind(client); exportClient.get = (key) => new Promise((resolve, reject) => { const timeout = setTimeout(() => reject(), timeoutDuration);