Connection Error for Node.js app on Heroku after Redis upgrade

86 Views Asked by At

We have an app created with node.js which is Hosted on Heroku.

After the upgrade of Redis from a free plan to paid plan, our app is not connecting.

As per the suggestion from Heroku support team, we added the below code on our app, but there is no luck


const client = redis.createClient({
  url: process.env.REDIS_URL,
  socket: {
    tls: true,
    rejectUnauthorized: false
  }
});

We are getting the below errors on the logs

enter image description here

Is there any suggestions which can be given over here?

0

There are 0 best solutions below