ShaneK / Matador

Front-end web interface for Bull Job Manager
MIT License
98 stars 51 forks source link

[IMPROVEMENT] bumped bull, redis to latest, fixes a specified db from the config #27

Closed rook2pawn closed 8 years ago

rook2pawn commented 8 years ago

@ShaneK Bull was updated 4/8/16 to fix a longstanding issue which now allows the user to correctly select the db number for each queue in redis CreateClient; so as far as Matador is concerned updating both the bull and redis package are required to allow the user to select the db from within the config and will easily make Matador feature compatible with the new Bull.

e.g..

{
"port": 1337,
"redis": {
    "host": "localhost",
    "port": 6379,
    "options" : {
      "db" : 2
    }
},
"errorPages": {
    "404": "errors/404",
    "not-connected": "errors/not-connected"
},
"development": true
}
ShaneK commented 8 years ago

Thank you for letting me know and for the PR. I'll update Matador on npm shortly.