1 Sep 2006 06:50
svn commit: r439177 - in /logging/log4j/trunk/src/java/org/apache/log4j: scheduler/Scheduler.java spi/LocationInfo.java
<carnold <at> apache.org>
2006-09-01 04:50:45 GMT
2006-09-01 04:50:45 GMT
Author: carnold Date: Thu Aug 31 21:50:45 2006 New Revision: 439177 URL: http://svn.apache.org/viewvc?rev=439177&view=rev Log: Bug 34762: Scheduler uses notify not notifyAll Modified: logging/log4j/trunk/src/java/org/apache/log4j/scheduler/Scheduler.java logging/log4j/trunk/src/java/org/apache/log4j/spi/LocationInfo.java Modified: logging/log4j/trunk/src/java/org/apache/log4j/scheduler/Scheduler.java URL: http://svn.apache.org/viewvc/logging/log4j/trunk/src/java/org/apache/log4j/scheduler/Scheduler.java?rev=439177&r1=439176&r2=439177&view=diff ============================================================================== --- logging/log4j/trunk/src/java/org/apache/log4j/scheduler/Scheduler.java (original) +++ logging/log4j/trunk/src/java/org/apache/log4j/scheduler/Scheduler.java Thu Aug 31 21:50:45 2006 <at> <at> -82,7 +82,7 <at> <at> // if the job is the first on the list, then notify the scheduler thread // to schedule a new job if(i == 0) { - this.notify(); + this.notifyAll(); } return true; } else { <at> <at> -154,11 +154,11 <at> <at> jobList.add(i, newSJE); // if the jobList was empty, then notify the scheduler thread if(i == 0) {(Continue reading)
RSS Feed