41a6c3
# ./pullrev.sh 1570327
41a6c3
http://svn.apache.org/viewvc?view=revision&revision=1570327
41a6c3
41a6c3
https://bugzilla.redhat.com/show_bug.cgi?id=1327624
41a6c3
41a6c3
--- httpd-2.4.6/server/mpm_unix.c
41a6c3
+++ httpd-2.4.6/server/mpm_unix.c
41a6c3
@@ -742,7 +742,12 @@
41a6c3
      * readers stranded (a number of them could be tied up for
41a6c3
      * a while serving time-consuming requests)
41a6c3
      */
41a6c3
+    /* Recall: we only worry about IDLE child processes here */
41a6c3
     for (i = 0; i < num && rv == APR_SUCCESS; i++) {
41a6c3
+        if (ap_scoreboard_image->servers[i][0].status != SERVER_READY ||
41a6c3
+            ap_scoreboard_image->servers[i][0].pid == 0) {
41a6c3
+            continue;
41a6c3
+        }
41a6c3
         rv = dummy_connection(pod);
41a6c3
     }
41a6c3
 }