From 6b04debf839160de18a97597a287d947e0abc400 Mon Sep 17 00:00:00 2001 From: Matthew Staniscia Date: Tue, 14 May 2019 14:11:33 -0400 Subject: [PATCH] added doNotSetClientName to the config --- src/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.js b/src/index.js index 84062c7..458d608 100644 --- a/src/index.js +++ b/src/index.js @@ -232,6 +232,8 @@ class RedisJwt { this.config.secret = config.secret || 'secret_key'; this.config.multiple = !config.multiple ? false : true; + this.config.doNotSetClientName = !config.doNotSetClientName ? false : true; + // instances this.d = new Driver(this.config);