
|
If you were logged in you would be able to see more operations.
|
|
|
|
The implementation of org.quartz.plugins.management.ShutdownHookPlugin is incorrect. It does not take the setting of the cleanShutdown flag into consideration when creating the shutdown hook thread.
The fix is simple. Simply change line 138 from
scheduler.shutdown(true);
to
scheduler.shutdown(isCleanShutdown());
|
|
Description
|
The implementation of org.quartz.plugins.management.ShutdownHookPlugin is incorrect. It does not take the setting of the cleanShutdown flag into consideration when creating the shutdown hook thread.
The fix is simple. Simply change line 138 from
scheduler.shutdown(true);
to
scheduler.shutdown(isCleanShutdown()); |
Show » |
| There are no comments yet on this issue.
|
|