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,