Commit cd6a0cba authored by Paul Querna's avatar Paul Querna
Browse files

Don't overcount busy servers from previous generations.

Suggested by: Ruediger Pluem


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@723661 13f79535-47bb-0310-9956-ffa450edef68
parent c9192734
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -73,7 +73,8 @@ static int hb_monitor(hb_ctx_t *ctx, apr_pool_t *p)
                ready++;
            }
            else if (res != SERVER_DEAD &&
                     res != SERVER_STARTING && res != SERVER_IDLE_KILL) {
                     res != SERVER_STARTING && res != SERVER_IDLE_KILL &&
                     ps->generation == ap_my_generation) {
                busy++;
            }
        }