You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by st...@apache.org on 2004/02/24 03:28:52 UTC

cvs commit: modperl-2.0/lib/ModPerl TestRun.pm

stas        2004/02/23 18:28:52

  Modified:    lib/ModPerl TestRun.pm
  Log:
  my smoke keeps on timing out on startup with worker :( bump up the default
  to 5 minutes.
  
  Revision  Changes    Path
  1.18      +1 -1      modperl-2.0/lib/ModPerl/TestRun.pm
  
  Index: TestRun.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/lib/ModPerl/TestRun.pm,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -u -r1.17 -r1.18
  --- TestRun.pm	28 Jan 2004 19:26:41 -0000	1.17
  +++ TestRun.pm	24 Feb 2004 02:28:52 -0000	1.18
  @@ -18,7 +18,7 @@
       # default timeout in secs (threaded mpms are extremely slow to
       # startup, due to a slow perl_clone operation)
       $self->{conf_opts}->{startup_timeout} ||=
  -        Apache::Build->build_config->mpm_is_threaded() ? 180 : 120;
  +        Apache::Build->build_config->mpm_is_threaded() ? 300 : 120;
   
       $self->{conf_opts}->{maxclients} ||= MIN_MAXCLIENTS;