Don't use broadcast mode for redis

This commit is contained in:
Ajay
2024-02-09 12:09:03 -05:00
parent 5929460239
commit bf644d6899

View File

@@ -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;