https://issues.apache.org/bugzilla/show_bug.cgi?id=53693
--- Comment #2 from Mike <[email protected]> --- I tried changing in modules/fcgid/fcgid_bridge.c, /* Avoid sleeping the very first time through if there are no busy processes; the problem is just that we haven't spawned anything yet, so waiting is pointless */ if (i > 0 || j > 0 || count_busy_processes(r, &fcgi_request)) { apr_sleep(apr_time_from_sec(1)); to if (i > 0 || j > 0 || count_busy_processes(r, &fcgi_request)) { apr_sleep(apr_time_from_sec(0)); and the serialization block seems to have stopped. Is this meant to just be an artificial anti-thrashing mechanism? If so, is there a better way I can prevent too many processes for trying to spin up concurrently, than adding in this 1s time delay? The 1s delay totally kills concurrent requests. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
