Show
Ignore:
Timestamp:
12/05/08 17:44:49 (4 years ago)
Author:
kazuho
Message:

configurable min_clients

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/App-Benchmark-WAF/trunk/lib/App/Benchmark/WAF/TestRunPerl.pm

    r25954 r25959  
    99    my $maxclients = $ENV{APACHE_MAXCLIENTS} || 2; 
    1010    $self->{conf_opts}->{maxclients} = $maxclients; 
     11    my $minclients = $ENV{APACHE_MINCLIENTS} || 1; 
     12    $self->{conf_opts}->{minclients} = $minclients; 
    1113 
    1214    print STDERR <<EOM; 
     
    1416Generating config with the following custom settings 
    1517    MaxClients: $maxclients 
     18    MinClients: $minclients 
    1619 
    1720EOM