Skip Menu |

This queue is for tickets about the Net-Trac CPAN distribution.

Report information
The Basics
Id: 43642
Status: resolved
Priority: 0/
Queue: Net-Trac

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

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



Subject: Server didn't start up on slow box
So far you got 3 FAIL reports from me because the time to startup the server was exceeded. Trivial patch make the tests pass on my heavily loaded test box: --- ../Net-Trac-0.09/t/setup_trac.pl 2009-02-17 03:18:42.000000000 +0100 +++ t/setup_trac.pl 2009-02-26 05:13:51.000000000 +0100 @@ -31,7 +31,7 @@ my $self = shift; for ( 1 .. 200 ) { return 1 if eval { get( $self->url ) }; - usleep 5000; + usleep 15000; } die "Server didn't start"; } I'd suggest giving it even more time for when somebody runs it on a phone next time. Thanks,
CC: undisclosed-recipients: ;
Subject: Re: [rt.cpan.org #43642] Server didn't start up on slow box
Date: Thu, 26 Feb 2009 18:44:14 -0500
To: Andreas Koenig via RT <bug-Net-Trac [...] rt.cpan.org>
From: jesse <jesse [...] fsck.com>
Thanks. Applied On Wed, Feb 25, 2009 at 11:30:53PM -0500, Andreas Koenig via RT wrote: Show quoted text
> Wed Feb 25 23:30:51 2009: Request 43642 was acted upon. > Transaction: Ticket created by ANDK > Queue: Net-Trac > Subject: Server didn't start up on slow box > Broken in: 0.09 > Severity: Normal > Owner: Nobody > Requestors: ANDK@cpan.org > Status: new > Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=43642 > > > > So far you got 3 FAIL reports from me because the time to startup the > server was exceeded. > > Trivial patch make the tests pass on my heavily loaded test box: > > --- ../Net-Trac-0.09/t/setup_trac.pl 2009-02-17 03:18:42.000000000 +0100 > +++ t/setup_trac.pl 2009-02-26 05:13:51.000000000 +0100 > @@ -31,7 +31,7 @@ > my $self = shift; > for ( 1 .. 200 ) { > return 1 if eval { get( $self->url ) }; > - usleep 5000; > + usleep 15000; > } > die "Server didn't start"; > } > > I'd suggest giving it even more time for when somebody runs it on a > phone next time. > > Thanks, >
--