On Tue, 18 Jun 2002, Mladen Turk wrote: > Can't believe it! > > We have a race condition beetwen the: > Alias /examples /tomcat/webapps/examples > and > JkMount /*.jsp ajp13 > > If I comment out the Alias directive there is no more colision, and if I > slow down the map_uri_to_worker putting the Sleep(100), then for the > each request there is 'not found handler'. > > Any ideas how to solve that?
How can it be ??? All processing for a request happens in a single thread, you can't have a 'race condition' when a single thread is processing the request. Mapping a request to a worker shouldn't modify any data that is accessed by other threads - we just access some static structures. That's very strange... Costin -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>