Skip Menu |

This queue is for tickets about the Catalyst-Runtime CPAN distribution.

Report information
The Basics
Id: 48623
Status: resolved
Priority: 0/
Queue: Catalyst-Runtime

People
Owner: Nobody in particular
Requestors: sebastian [...] podjasek.pl
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 5.80007
Fixed in: (no value)



Subject: Error in Catalyst::Engine::HTTP
Missing parameter in write() call makes this engine to not send headers properly - patch below... =================================================================== --- HTTP.pm (revision 11118) +++ HTTP.pm (working copy) @@ -159,7 +159,7 @@ # Prepend the headers if they have not yet been sent if ( $self->_has_header_buf ) { $self->_warn_on_write_error( - $self->$orig($self->_clear_header_buf) + $self->$orig($c, $self->_clear_header_buf) ); }
Patch applied in r11124, new release will happen shortly when I've worked through a couple more bug reports. Many thanks! t0m