Merge pull request #2211 from majinding/master

fix https://github.com/xuxueli/xxl-job/issues/2210
This commit is contained in:
许雪里 2021-02-09 15:48:11 +08:00 committed by GitHub
commit c7b3a70a4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 38 additions and 29 deletions

View File

@ -26,4 +26,13 @@ public class GlueJobHandler extends IJobHandler {
jobHandler.execute(); jobHandler.execute();
} }
@Override
public void init() throws Exception {
this.jobHandler.init();
}
@Override
public void destroy() throws Exception {
this.jobHandler.destroy();
}
} }