respondWith() called after getRow() does not set "Content-Type" response
------------------------------------------------------------------------
Key: COUCHDB-430
URL: https://issues.apache.org/jira/browse/COUCHDB-430
Project: CouchDB
Issue Type: Bug
Components: JavaScript View Server
Affects Versions: 0.10
Environment: {"couchdb":"Welcome","version":"0.10.0a796218"}
Linux
Reporter: Rune S. Larsen
Priority: Minor
After calling getRow() once, the response header are locked and cannot be
changed by respondWith.
getRow() should be side-effect free and Sending shouldn't start before calling
send();
Example, where respondWith() cannot set "Content-Type" response header
according to "Accept" request header:
function(head, req){
var row = getRow();
respondWith(req,
{
json : function() {
send("{'json'}");
},
xml : function() {
send('<?xml version="1.0" encoding="UTF-8"?>');
}
});
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.