Only invalidate cache on del style when caching is enabled
This commit is contained in:
parent
0a57e791d5
commit
7196c8c285
@ -73,7 +73,7 @@ var CartodbWindshaft = function(serverOptions) {
|
|||||||
ws.doCORS(res);
|
ws.doCORS(res);
|
||||||
Step(
|
Step(
|
||||||
function(){
|
function(){
|
||||||
serverOptions.flushCache(req, Cache, this);
|
serverOptions.flushCache(req, serverOptions.cache_enabled ? Cache : null, this);
|
||||||
},
|
},
|
||||||
function(err, data){
|
function(err, data){
|
||||||
if (err){
|
if (err){
|
||||||
|
@ -155,7 +155,9 @@ module.exports = function(){
|
|||||||
},
|
},
|
||||||
function(err, data){
|
function(err, data){
|
||||||
if (err) throw err;
|
if (err) throw err;
|
||||||
|
if(Cache) {
|
||||||
Cache.invalidate_db(req.params.dbname, req.params.table);
|
Cache.invalidate_db(req.params.dbname, req.params.table);
|
||||||
|
}
|
||||||
callback(null, true);
|
callback(null, true);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user