smrchy / rsmq

Redis Simple Message Queue
MIT License
1.76k stars 125 forks source link

Add noauth support #71

Closed stanleybz closed 2 years ago

stanleybz commented 6 years ago

Just adding the NOAUTH Authentication support to Redis connection when creating new object

e.g.

new RedisSMQ( {
    host: process.env.REDIS_HOST, 
    port: process.env.REDIS_PORT,
    no_auth: process.env.REDIS_NO_AUTH_PW, 
    ns: "rsmq"
} )
stanleybz commented 6 years ago

70