michaelyin / openmeetings

Automatically exported from code.google.com/p/openmeetings
0 stars 0 forks source link

simple mistake in quartz scheduler. #1360

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
I download the openmeetings code in 
http://openmeetings.googlecode.com/svn/trunk/singlewebapp/ . After i run it , i 
found the console keep reporting [DEBUG] [DefaultQuartzScheduler_Worker-1] , it 
makes me confused , and it makes out of memory error,and i think there may be 
something wrong, and then i found the code in 
org.openmeetings.app.quartz.scheduler.QuartzRecordingJob 
:WhiteboardConvertionJobManager.getInstance().initJobs(); 
then in initJobs(),  try {
            if (!isRunning) {
                isRunning = true;

               ……

               isRunning = false;

            }
i think the (isRunning = false) is bug , hope to fix it soon.....

Original issue reported on code.google.com by kiseki.t...@gmail.com on 28 Feb 2011 at 2:26

GoogleCodeExporter commented 9 years ago
There is no error related with that code.

The Debug is also no error, Quartz is a scheduler that gets called 
periodically. So its normal that the log writes a regular statement for that 
one.

Original comment by seba.wag...@gmail.com on 9 Oct 2011 at 1:27