Skip to content

Commit

Permalink
Fix PassengerMinInstances on Apache: it's supposed to default to 1.
Browse files Browse the repository at this point in the history
  • Loading branch information
FooBarWidget committed Sep 16, 2010
1 parent 3f687a9 commit 9ea6d9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/apache2/Configuration.hpp
Expand Up @@ -289,7 +289,7 @@ struct DirConfig {
if (minInstancesSpecified) {
return minInstances;
} else {
return 0;
return 1;
}
}

Expand Down

0 comments on commit 9ea6d9a

Please sign in to comment.