Merge pull request #12 from grampajoe/master

Fixed error in error message.
raw_icon
John Crepezzi 14 years ago
commit 7a946f4967
  1. 2
      lib/redis_document_store.js

@ -24,7 +24,7 @@ RedisDocumentStore.connect = function(options) {
RedisDocumentStore.client = redis.createClient(port, host);
RedisDocumentStore.client.select(index, function(err, reply) {
if (err) {
winston.error('error connecting to redis index ' + index, { error: error.message });
winston.error('error connecting to redis index ' + index, { error: err.message });
process.exit(1);
}
else {

Loading…
Cancel
Save