>- see footer for list info -< Hi, I think somewhere you have some code in your application using <cflock name="something">
There should be a timeout value set. Because Coldfusion is multi threaded then when one thread has the lock if the other thread comes along and can't get a lock it will throw an exception. Issues could be whatever is being locked is taking longer (maybe increase the timeout). Or look at why its being locked and why its taking longer. Often locks are used to prevent race conditions, but from legacy coldfusion applications 4.5,5 etc etc they were often used to manage access to shared scopes often for reading and writing, this was because in older versions memory corruption sometimes occurred when accessing shared scopes. Hopefully this gives you somewhere to start A On 08/08/2008 16:52, "Christian Bouet" <[EMAIL PROTECTED]> wrote: >> - see footer for list info -< > Hi all, > > We seem to be getting this error annoyingly frequently but it's hard to > figure out why and even what it means. Does any of you know what can > cause this kind? > > > java.lang.InterruptedException at > coldfusion.runtime.RWLock.waitForLock(RWLock.java:146) at > coldfusion.runtime.RWLock.requestWriteLock(RWLock.java:124) at > coldfusion.runtime.RWLock.requestLock(RWLock.java:46) at > coldfusion.runtime.LockManager.requestNamedLock(LockManager.java:73) > > > Cheers, > Christian > > _______________________________________________ > > For details on ALL mailing lists and for joining or leaving lists, go to > http://list.cfdeveloper.co.uk/mailman/listinfo > > -- > CFDeveloper Sponsors:- >> - cfdeveloper Hosting provided by www.cfmxhosting.co.uk -< >> - Lists hosted by www.Gradwell.com -< >> - CFdeveloper is run by Russ Michaels, feel free to volunteer your help -< -- This message has been scanned for viruses and dangerous content by Trusted Management Limited, and is believed to be clean. _______________________________________________ For details on ALL mailing lists and for joining or leaving lists, go to http://list.cfdeveloper.co.uk/mailman/listinfo -- CFDeveloper Sponsors:- >- cfdeveloper Hosting provided by www.cfmxhosting.co.uk -< >- Lists hosted by www.Gradwell.com -< >- CFdeveloper is run by Russ Michaels, feel free to volunteer your help -<
