Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
Description
Queue.resume() has no effect although the eventing console show it is sleeping.
bug in OrderedJobQueue:
@Override
public void resume() {
if ( this.isSleepingUntil == -1 ) {
final Thread thread = this.sleepingThread;
if ( thread != null )
}
super.resume();
}
the first if should be:
if ( this.isSleepingUntil != -1 ) {