Unverified Commit f3838ab4 authored by John Crepezzi's avatar John Crepezzi Committed by GitHub
Browse files

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

Handle redis error and re-establish connection
parents ee1c1c08 bf2b1c95
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -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(