more cache hash fixes

This commit is contained in:
Julian Lam
2014-12-01 14:21:03 -05:00
parent 2e24224449
commit 5cc30ca1a0
3 changed files with 9 additions and 3 deletions

2
app.js
View File

@@ -189,11 +189,13 @@ function start() {
case 'js-propagate':
meta.js.cache = message.cache;
meta.js.map = message.map;
meta.js.hash = message.hash;
winston.verbose('[cluster] Client-side javascript and mapping propagated to worker %s', cluster.worker.id);
break;
case 'css-propagate':
meta.css.cache = message.cache;
meta.css.acpCache = message.acpCache;
meta.css.hash = message.hash;
winston.verbose('[cluster] Stylesheets propagated to worker %s', cluster.worker.id);
break;
}