Do not choke on headers cleanup when response headers are not set
Raise a WARNING instead. See #107 (github) and CDB-1438 (JIRA)
This commit is contained in:
@@ -46,9 +46,13 @@ var CartodbWindshaft = function(serverOptions) {
|
||||
// See http://github.com/CartoDB/Windshaft-cartodb/issues/107
|
||||
var ws_sendError = ws.sendError;
|
||||
ws.sendError = function(res) {
|
||||
delete res._headers['cache-control'];
|
||||
delete res._headers['last-modified'];
|
||||
delete res._headers['x-cache-channel'];
|
||||
if ( res._headers ) {
|
||||
delete res._headers['cache-control'];
|
||||
delete res._headers['last-modified'];
|
||||
delete res._headers['x-cache-channel'];
|
||||
} else {
|
||||
console.log("WARNING: response has no _headers: "); console.dir(res);
|
||||
}
|
||||
ws_sendError.apply(this, arguments);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user