Cloudflare WARP question

I'm running a discord bot on an AWS EC2 instance. I am using node redis locally for caching. After enabling WARP, I am getting several connection timeout errors with Redis when I launch. Usually after about 1 - 2 minutes the errors stop and it finally connects. I tried increasing the time out to 15 seconds and the errors are still occurring. Is there anything in WARP I can check/set to troubleshoot this? Thanks!
5 Replies
Bot Mhann
Bot MhannOP13mo ago
All createClient options in Redis are left at default settings. I only sepcify a database option:
const redisClient = redis.createClient({ database: 0 });
const redisClient2 = redis.createClient({ database: 1 });
const redisClient = redis.createClient({ database: 0 });
const redisClient2 = redis.createClient({ database: 1 });
I'm using localhost to connect to Redis...could that be an issue with WARP running?
696223
69622313mo ago
@Bot Mhann
Bot Mhann
Bot MhannOP13mo ago
Yes?
696223
69622313mo ago
Yes
Bot Mhann
Bot MhannOP13mo ago
Can you help me with my question?

Did you find this page helpful?