Re: cvs commit: httpd-2.0/modules/proxy proxy_balancer.c proxy_util.c mod_proxy.h

2004-09-10 Thread William A. Rowe, Jr.
You introduce a race between multiple listening threads attempting to initialize the scoreboard together. post_config or child_init should solve the problem, no? At 03:16 AM 9/10/2004, [EMAIL PROTECTED] wrote: mturk 2004/09/10 01:16:26 Modified:modules/proxy proxy_balancer.c

Re: cvs commit: httpd-2.0/modules/proxy proxy_balancer.c proxy_util.c mod_proxy.h

2004-09-10 Thread Mladen Turk
William A. Rowe, Jr. wrote: You introduce a race between multiple listening threads attempting to initialize the scoreboard together. post_config or child_init should solve the problem, no? Yes, I see that (now that you've mentioned :)). I'll use the child_init to initialize all balancers.