multiple-redis
Advanced tools
Comparing version 1.0.53 to 1.0.54
| Date | Version | Description | | ||
| ----------- | ------- | ----------- | | ||
| 2017-06-01 | v1.0.53 | Maintenance | | ||
| 2017-06-13 | v1.0.54 | Maintenance | | ||
| 2017-01-18 | v1.0.29 | setnx type commands now run in sequence and not in parallel | | ||
@@ -5,0 +5,0 @@ | 2017-01-16 | v1.0.28 | Maintenance | |
@@ -111,3 +111,5 @@ 'use strict'; | ||
} else { | ||
self.clients = [params.clients]; | ||
self.clients = [ | ||
params.clients | ||
]; | ||
} | ||
@@ -121,3 +123,5 @@ } else { | ||
if (!Array.isArray(connectionInfo)) { | ||
connectionInfo = [connectionInfo]; | ||
connectionInfo = [ | ||
connectionInfo | ||
]; | ||
} else if (options.mergeDuplicateEndpoints) { | ||
@@ -124,0 +128,0 @@ connectionInfo = self.getUniqueEndpoints(connectionInfo); |
{ | ||
"name": "multiple-redis", | ||
"version": "1.0.53", | ||
"version": "1.0.54", | ||
"description": "Run redis commands against multiple redis instances.", | ||
@@ -5,0 +5,0 @@ "author": { |
@@ -141,3 +141,3 @@ # multiple-redis | ||
| ----------- | ------- | ----------- | | ||
| 2017-06-01 | v1.0.53 | Maintenance | | ||
| 2017-06-13 | v1.0.54 | Maintenance | | ||
| 2017-01-18 | v1.0.29 | setnx type commands now run in sequence and not in parallel | | ||
@@ -144,0 +144,0 @@ | 2017-01-16 | v1.0.28 | Maintenance | |
65908
757