issue #94 again

This commit is contained in:
Julian Lam
2013-07-17 12:17:52 -04:00
parent d3541da9dd
commit 1e4424d656

View File

@@ -46,15 +46,15 @@ var async = require('async'),
break;
case 'redis:host':
config.redis = config.redis || {};
config.redis.host = value;
if (value !== '') config.redis.host = value;
break;
case 'redis:port':
config.redis = config.redis || {};
config.redis.port = value;
if (value !== '') config.redis.port = value;
break;
case 'redis:password':
config.redis = config.redis || {};
config.redis.password = value;
if (value !== '') config.redis.password = value;
break;
default: