diff --git a/lib/document_stores/redis.js b/lib/document_stores/redis.js index 2301bbe..3f72d4b 100644 --- a/lib/document_stores/redis.js +++ b/lib/document_stores/redis.js @@ -27,7 +27,7 @@ RedisDocumentStore.connect = function(options) { RedisDocumentStore.client = redis.createClient(port, host); // authenticate if password is provided if (options.password) { - RedisDocumentStore.client.auth(options.password); + RedisDocumentStore.client.auth(options.password); } RedisDocumentStore.client.select(index, function(err, reply) { if (err) {