Skip to content

Commit

Permalink
fixed a dep
Browse files Browse the repository at this point in the history
  • Loading branch information
miyagawa committed Feb 9, 2010
1 parent e40c242 commit d5fe092
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ readme_from 'lib/Nomo.pm';
build_requires 'Test::More';
requires 'Plack', 0.99;
requires 'Net::Server';
requires 'Net::Server::SS::Prefork';
requires 'Net::Server::SS::PreFork';
requires 'Data::Dump';
requires 'HTTP::Parser::XS';
requires 'HTTP::Status';
Expand Down
2 changes: 1 addition & 1 deletion lib/Nomo/Server.pm
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ sub run {
port => $options->{port} || 5000,
host => $options->{host} || '*',
serialize => 'flock',
log_level => DEBUG ? 4 : 1,
log_level => DEBUG ? 4 : 0,
min_servers => $options->{min_servers} || 5,
min_spare_servers => $options->{min_spare_servers} || 2,
max_spare_servers => $options->{max_spare_servers} || 10,
Expand Down

0 comments on commit d5fe092

Please sign in to comment.