connect-redis
Advanced tools
Comparing version 1.0.6 to 1.0.7
1.0.7 / 2011-08-04 | ||
================== | ||
* Fixed: re-select db on connection (reconnection logic issue with node_redis) | ||
1.0.6 / 2011-06-21 | ||
@@ -3,0 +8,0 @@ ================== |
@@ -55,2 +55,7 @@ /*! | ||
self.client.select(options.db); | ||
self.client.on("connect", function() { | ||
self.client.send_anyways = true; | ||
self.client.select(options.db); | ||
self.client.send_anyways = false; | ||
}); | ||
} | ||
@@ -142,2 +147,2 @@ }; | ||
return RedisStore; | ||
}; | ||
}; |
{ | ||
"name": "connect-redis", | ||
"description": "Redis session store for Connect", | ||
"version": "1.0.6", | ||
"version": "1.0.7", | ||
"author": "TJ Holowaychuk <tj@vision-media.ca>", | ||
@@ -6,0 +6,0 @@ "main": "./index.js", |
18479
189