We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7ea694 commit 283f025Copy full SHA for 283f025
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "cache-service-redis",
3
- "version": "1.2.2",
+ "version": "1.2.3",
4
"description": "A redis plugin for cache-service.",
5
"main": "redisCacheModule.js",
6
"dependencies": {
redisCacheModule.js
@@ -350,7 +350,7 @@ function redisCacheModule(config){
350
retry_strategy: retryStrategy});
351
352
// don't call redis auth method if no auth info passed
353
- if (self.redisData.auth != null) {
+ if (self.redisData.auth) {
354
self.db.auth(self.redisData.auth);
355
}
356
0 commit comments