From: Florian Ragwitz Date: Sat, 9 Jan 2010 18:01:25 +0000 (+0000) Subject: Don't pass $ctx down to read(). X-Git-Tag: 5.89000~70 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ce7abbda78e3f775d060eebad6822e1fa6d14582;hp=9e1f645bb681933b97d9dc8e146141e91ce2cc93;p=catagits%2FCatalyst-Runtime.git Don't pass $ctx down to read(). --- diff --git a/lib/Catalyst/Engine.pm b/lib/Catalyst/Engine.pm index ac7469b..5827780 100644 --- a/lib/Catalyst/Engine.pm +++ b/lib/Catalyst/Engine.pm @@ -728,7 +728,7 @@ there is no more data to be read. =cut sub read_chunk { - my ($self) = @_; + my ($self, $ctx) = (shift, shift); return $self->env->{'psgi.input'}->read(@_); }