As the title says, I can’t connect to my render-hosted redis from my render-hosted background worker. They are both in the same region.
[21:27:58.069] INFO (52): [Redis] Client Error: Error: getaddrinfo ENOTFOUND red-ck4ffne...
This is the code we’re using to connect:
const redisClient = createClient({
url: process.env.REDIS_URL,
socket: {
family: 6
}
});
Any tips are much appreciated. Thank you!