Skip to content

Commit

Permalink
chore(core): debug revert
Browse files Browse the repository at this point in the history
  • Loading branch information
polonel committed May 31, 2022
1 parent e4471e8 commit 012d0ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cache/cache.js
Expand Up @@ -24,7 +24,7 @@ cache.init = function () {
cache.env = _.merge(cache.env, env)

spawnCache()
setInterval(spawnCache, 5 * 60 * 1000)
setInterval(spawnCache, 55 * 60 * 1000)
}

cache.forceRefresh = function() {
Expand Down
2 changes: 1 addition & 1 deletion src/cache/index.js
Expand Up @@ -62,7 +62,7 @@ function restartRefreshClock () {
refreshTimer = setInterval(function () {
truCache.refreshCache()
winston.debug('Refreshing Cache...')
}, 5 * 60 * 1000)
}, 55 * 60 * 1000)
}

truCache.refreshCache = function (callback) {
Expand Down

0 comments on commit 012d0ea

Please sign in to comment.