Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Starman CPAN distribution.

Report information
The Basics
Id: 60007
Status: resolved
Priority: 0/
Queue: Starman

People
Owner: Nobody in particular
Requestors: triddle [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: 0.2006
Fixed in: (no value)



The tests for Starman were generating some warnings on my machine but were still passing. I successfully squelched the warnings by checking for definedness on a scalar that was having a regex applied to it. It's a simple modification, not worthy of patch - here's the line in context: sub _read_headers { my $self = shift; eval { local $SIG{ALRM} = sub { die "Timed out\n"; }; alarm( READ_TIMEOUT ); while (1) { # Do we have a full header in the buffer? # This is before sysread so we don't read if we have a pipelined request # waiting in the buffer if (defined($self->{client}->{inputbuf})) { #my fix last if $self->{client}->{inputbuf} =~ /$CRLF$CRLF/s; } Cheers, Tyler
Fixed