[Fix] schedule StrolchJob after running now

This commit is contained in:
Robert von Burg 2018-11-14 14:20:00 +01:00
parent 7c778d334a
commit 8dcc6c310d
1 changed files with 1 additions and 0 deletions

View File

@ -174,6 +174,7 @@ public abstract class StrolchJob implements Runnable {
*/
public void runNow() throws Exception {
doWork();
schedule();
if (this.lastException != null)
throw this.lastException;
}