Merge pull request #251 from seejohnrun/handle-redis-disconnect

Handle redis error and re-establish connection
This commit is contained in:
John Crepezzi 2018-09-19 10:38:34 -04:00 committed by GitHub
commit f3838ab4a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -29,6 +29,11 @@ RedisDocumentStore.connect = function(options) {
if (options.password) {
RedisDocumentStore.client.auth(options.password);
}
RedisDocumentStore.client.on('error', function(err) {
winston.error('redis disconnected', err);
});
RedisDocumentStore.client.select(index, function(err) {
if (err) {
winston.error(