I have a redis instance created following: GitHub - render-examples/redis: Persistent Redis as a private Docker service on Render
I am trying to deploy simple node app that attempts to use redis instance:
const connection = new IORedis(REDIS_PORT, REDIS_HOST), where REDIS_PORT and REDIS_HOST are coming from the redis service using yaml config.
const jobsQueue = new Queue(‘jobs’, { connection });
But I keep receiving Error: connect ETIMEDOUT