author | Michael Krelin <hacker@klever.net> | 2006-11-07 22:35:43 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2006-11-07 22:35:43 (UTC) |
commit | d2bac550faab6e8ffbf3f3d43fdf7cd862cf0a72 (patch) (unidiff) | |
tree | f2f41e6b5f6d029f9cb77c58b317fd42cc900246 | |
parent | 048b283417574ab29fa28a44e1cedb2c76a2e327 (diff) | |
download | sitecing-d2bac550faab6e8ffbf3f3d43fdf7cd862cf0a72.zip sitecing-d2bac550faab6e8ffbf3f3d43fdf7cd862cf0a72.tar.gz sitecing-d2bac550faab6e8ffbf3f3d43fdf7cd862cf0a72.tar.bz2 |
requests per child limitation handling bug
-rw-r--r-- | src/sitecing-fastcgi.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sitecing-fastcgi.cc b/src/sitecing-fastcgi.cc index d8f18a6..57aba60 100644 --- a/src/sitecing-fastcgi.cc +++ b/src/sitecing-fastcgi.cc | |||
@@ -150,7 +150,7 @@ void sitecing_fastcgi_pm::process(int slot) { | |||
150 | int rpc = 0; | 150 | int rpc = 0; |
151 | if(config.flags&configuration::flag_requests_per_child) | 151 | if(config.flags&configuration::flag_requests_per_child) |
152 | rpc = config.requests_per_child; | 152 | rpc = config.requests_per_child; |
153 | for(int req=0;(rpc<=0) || (req<rpc);rpc++) { | 153 | for(int req=0;(rpc<=0) || (req<rpc);++req) { |
154 | semaphore_lock sl; | 154 | semaphore_lock sl; |
155 | if(multi) { | 155 | if(multi) { |
156 | sslot->state = scoreboard_slot::state_idle; | 156 | sslot->state = scoreboard_slot::state_idle; |