@ikonintegration/ikapi 2.6.5-beta2 → 2.6.5-beta3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -104,7 +104,7 @@ export default class IKCache_Redis extends IKCache {
|
|
|
104
104
|
localConsole.debug("Starting remote cache connection");
|
|
105
105
|
|
|
106
106
|
//Instantiate client and initiate connection
|
|
107
|
-
return new Promise((resolve, reject) => {
|
|
107
|
+
return new Promise(async (resolve, reject) => {
|
|
108
108
|
const redis = require("redis");
|
|
109
109
|
const isV4 = this._isRedisClientV4();
|
|
110
110
|
//
|