It does read that way, but I'm not sure what to do about it? How did the limit get hit? What can I do to prevent that limit from being hit... it seems like once this error pops up, it eventually goes away.
I may have to wrap the section in a try/catch, and if the error pops up, simply try and run the code synchronously. Mark On Feb 14, 2008 4:40 PM, Andrew Scott <[EMAIL PROTECTED]> wrote: > Intersting though... > > Because this is your problem, but I do not know enough about this area > of coldfusion to comment on it :-( > > "Cannot create a new thread because the task queue has reached it maximum > limit" > > That tells me that the limitation on CF Standard has been reached, for > the queue, do you not read it that way Mark? > > > > On 2/14/08, Mark Mandel <[EMAIL PROTECTED]> wrote: > > It is standard, but that event, the threads should just queue. The > > traffic isn't that high on the server that I can see the reason why it > > would actually throw an error? > > > > Mark > > > > On Feb 14, 2008 4:30 PM, Andrew Scott <[EMAIL PROTECTED]> wrote: > > > Mark Professional or Standard.... > > > > > > I recal limitations on running threads with Standard, but do not quote > > > me on that one.... > > > > > > Intersting though haven't seen that error before. > > > > > > > > > > > > On 2/14/08, Mark Mandel <[EMAIL PROTECTED]> wrote: > > > > Hey all, > > > > > > > > We keep getting this error on our server: > > > > > > > > Cannot create a new thread because the task queue has reached it > > > > maximum limit > > > > > > > > Where we are attempting to use <cfthread> for some code (it's actually > > > > Transfer code). > > > > > > > > The error occurs on the block: > > > > <cffunction name="run" hint="Runs the aspect of clearing out discard > > > > queues" access="public" returntype="void" output="false"> > > > > > > > > <!--- if we're inside a cfthread, run syncronously ---> > > > > <cfif getThread().currentThread().getThreadGroup().getName() eq > > > > "cfthread"> > > > > <cfscript> > > > > super.run(); > > > > </cfscript> > > > > <cfelse> > > > > <cfthread action="run" > > > > name="transfer.DiscardQueueHandler_#getRequestFacade().getThreadID()#"> > > > > <cfscript> > > > > super.run(); > > > > </cfscript> > > > > </cfthread> > > > > </cfif> > > > > </cffunction> > > > > > > > > On the link starting with <cfthread> > > > > > > > > Has anyone come across this before? or have any idea what it is caused > > > > by? > > > > > > > > Mark > > > > > > > > -- > > > > E: [EMAIL PROTECTED] > > > > W: www.compoundtheory.com > > > > > > > > > > > > > > > > > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298962 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

