Roundup Tracker - Issues

Message3717

Author cmeerw
Recipients cmeerw
Date 2009-06-07.16:32:13
Message-id <1244392333.92.0.687301916125.issue2550552@psf.upfronthosting.co.za>
In-reply-to
Using roundup 1.4.8 with Apache's mod_fcgid (via flup 1.0.2). I get an 
error message saying "Value of header "Content-Length" must be a 
string" in flup/server/fcgi_base.py", line 1109, in start_response

    assert type(val) is str, 'Value of header "%s" must be a string' % 
name

AssertionError: Value of header "Content-Length" must be a string

It looks like roundup/cgi/client.py, line 1326 needs to be changed to 
set the value of the "Content-Length" as a string, i.e.

            self.setHeader("Content-Length", str(length))
History
Date User Action Args
2009-06-07 16:32:13cmeerwsetmessageid: <1244392333.92.0.687301916125.issue2550552@psf.upfronthosting.co.za>
2009-06-07 16:32:13cmeerwsetrecipients: + cmeerw
2009-06-07 16:32:13cmeerwlinkissue2550552 messages
2009-06-07 16:32:13cmeerwcreate