diff --git a/src/utils/redis.ts b/src/utils/redis.ts index d646344..e4d434f 100644 --- a/src/utils/redis.ts +++ b/src/utils/redis.ts @@ -384,7 +384,7 @@ async function setupCacheClientTracking(client: RedisClientType, if (!client || !cacheClient.isReady) return; - await client.sendCommand(["CLIENT", "TRACKING", "ON", "REDIRECT", cacheConnectionClientId, "BCAST"]); + await client.sendCommand(["CLIENT", "TRACKING", "ON", "REDIRECT", cacheConnectionClientId]); } export default exportClient;