Subject: | Errors not reported correct from Engine::HTTP |
In Catalyst::Engine::HTTP when the socket is initially created:
my $daemon = IO::Socket::INET->new(
Listen => SOMAXCONN,
LocalAddr => inet_ntoa($addr),
LocalPort => $port,
Proto => 'tcp',
ReuseAddr => 1,
Type => SOCK_STREAM,
)
or die "Couldn't create daemon: $!";
if the die routine is invoked no reason is given as usage of $! is wrong
- should be $@