1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00

Add test for auth_pass option submitted by hpeinar

This commit is contained in:
Bryce Baril
2013-07-24 08:21:28 -07:00
parent 882556e32d
commit 8f71003009
3 changed files with 22 additions and 1 deletions

View File

@@ -67,7 +67,7 @@ function RedisClient(stream, options) {
this.closing = false;
this.server_info = {};
this.auth_pass = null;
if(options.auth_pass !== undefined) {
if (options.auth_pass !== undefined) {
this.auth_pass = options.auth_pass;
}
this.parser_module = null;