scheduled jobs problem

2001-02-07 Thread John Thorhauer
Something has changed in the WorkerThread for jobs so that it is no longer waiting for the job to finish before in runs the following: je.setActive(false) So my jobs are now overlapping eachother and causing problems. Can anyone help me with this one? Thanks, John --

scheduled jobs problem Fixed

2001-02-07 Thread John Thorhauer
Nevermind. I found the problem. I will send a patch to fix it. John -- ** John Thorhauer ** [EMAIL PROTECTED] ** take a look at: ** http://tambora.zenplex.org ** http://www.zenplex.org ** http://www.zenplex.com

Re: scheduled jobs problem

2001-02-07 Thread Colin Chalmers
o: "Turbine" [EMAIL PROTECTED] Sent: Wednesday, February 07, 2001 4:19 PM Subject: scheduled jobs problem Something has changed in the WorkerThread for jobs so that it is no longer waiting for the job to finish before in runs the following: je.setActive(false) So my jobs are no

Re: scheduled jobs problem

2001-02-07 Thread Daniel Rall
John Thorhauer [EMAIL PROTECTED] writes: Something has changed in the WorkerThread for jobs so that it is no longer waiting for the job to finish before in runs the following: je.setActive(false) So my jobs are now overlapping eachother and causing problems. Can anyone help me with

Re: scheduled jobs problem

2001-02-07 Thread Dave Bryson
Just an end of the day guess... could it be that the running thread is not actually being interrupted ( TurbineScheduler.nextJob() )? Maybe add a quick flag in there to see if that fixes it ( i.e. blocks till the job finishes ). Hope that helps, Dave On Wed, 07 Feb 2001, you wrote: