From a847c9249cdf5701d01317db087bb07e2a4d3d23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kat=20March=C3=A1n?= Date: Wed, 24 May 2017 21:30:20 -0700 Subject: [PATCH] fix(cache): pass uid/gid/Promise through to cache --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 9582474..18a2893 100644 --- a/index.js +++ b/index.js @@ -52,7 +52,7 @@ function initializeCache (opts) { Cache = require('./cache') } - opts.cacheManager = new Cache(opts.cacheManager) + opts.cacheManager = new Cache(opts.cacheManager, opts) } opts.cache = opts.cache || 'default'