Merge pull request #3938 from czechboy0/patch-1

redis: auth_pass is a string (password), not a boolean.
This commit is contained in:
Horiuchi_H
2015-03-23 15:18:55 +09:00
+2 -2
View File
@@ -33,7 +33,7 @@ declare module "redis" {
}
interface ClientOpts {
parser: string;
parser?: string;
return_buffers?: boolean;
detect_buffers?: boolean;
socket_nodelay?: boolean;
@@ -42,7 +42,7 @@ declare module "redis" {
retry_max_delay?: number;
connect_timeout?: number;
max_attempts?: number;
auth_pass?: boolean;
auth_pass?: string;
}
interface RedisClient extends NodeJS.EventEmitter {