Hello I'm trying to connect an ElastiCache Redis to an Express server deployed on ECS. I get the **Primary Endpoint** from ElastiCache as `blablabla.mccjet.ng.0001.euc1.cache.amazonaws.com:6379` In my server I try to connect like this ```javascript const { createClient } = require("redis"); const pubClient = createClient({ url: 'blablabla.mccjet.ng.0001.euc1.cache.amazonaws.com:6379' }); ``` But when I check the ECS logs I see ```bash /usr/src/app/node_modules/@redis/client/dist/lib/client/index.js:124 throw new TypeError('Invalid protocol'); ^ TypeError: Invalid protocol at Function.parseURL (/usr/src/app/node_modules/@redis/client/dist/lib/c... ``` Any help on what I might be missing Thanks