Add templateMaps to serveroptions for the time being

This commit is contained in:
Raul Ochoa 2015-01-21 11:44:06 +01:00
parent f1b6be1ecb
commit 64b5a64e1b

View File

@ -50,12 +50,13 @@ var CartodbWindshaft = function(serverOptions) {
var template_baseurl = global.environment.base_url_templated || '(?:/maps/named|/tiles/template)';
var signedMaps = new SignedMaps(redisPool);
serverOptions.signedMaps = signedMaps;
var templateMapsOpts = {
max_user_templates: global.environment.maxUserTemplates
};
var templateMaps = new TemplateMaps(redisPool, signedMaps, templateMapsOpts);
serverOptions.templateMaps = templateMaps;
// boot
var ws = new Windshaft.Server(serverOptions);