Skip Menu |

This queue is for tickets about the FCGI-Client CPAN distribution.

Report information
The Basics
Id: 57374
Status: resolved
Priority: 0/
Queue: FCGI-Client

People
Owner: Nobody in particular
Requestors: me [...] berekuk.ru
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.04
Fixed in: (no value)



Subject: Invalid exception handling in request() method
Hi. In code of FCGI/Client/Connection.pm, in method request(), there are references to $@ in catch {...} block: } catch { if ($@) { die $@; } else { return @res; } }; I think you meant to use $_ instead. $@ in catch block contains _previous_ exception, before try {} call. Also, there is a typo in Carp::confess('REQUESET_TIME_OUT') argument :)
oops! thanks. fixed at 0.05!