Print a warning when configured mapnik version doesn't match installed

remotes/origin/use_db_slaves
Sandro Santilli 12 years ago committed by Luis Bosque
parent 65e4cf1510
commit 8e3c900580

@ -21,6 +21,14 @@ module.exports = function(){
log_format: global.environment.log_format
};
// Be nice and warn if configured mapnik version
// is != instaled mapnik version
if ( mapnik.versions.mapnik != me.grainstore.mapnik_version ) {
console.warn("WARNING: detected mapnik version ("
+ mapnik.versions.mapnik + ") != configured mapnik version ("
+ me.grainstore.mapnik_version + ")");
}
// Set the cache chanel info to invalidate the cache on the frontend server
//
// @param req The request object.

Loading…
Cancel
Save