Automattic / kue

Kue is a priority job queue backed by redis, built for node.js.
http://automattic.github.io/kue
MIT License
9.45k stars 862 forks source link

Kue has a different options configuration than redis.createClient #1179

Open alex-h-strachan opened 6 years ago

alex-h-strachan commented 6 years ago

Use case - I would like to use a redis configuration with both a URL and options, like

const kueOptions = {
    redis: { url: 'my-connection-url', tls: { servername: 'my-servername' } }
}

I've provided a PR and a more detailed description https://github.com/Automattic/kue/pull/1178