Merge pull request #2211 from majinding/master

fix https://github.com/xuxueli/xxl-job/issues/2210
master
许雪里 4 years ago committed by GitHub
commit c7b3a70a4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      xxl-job-core/src/main/java/com/xxl/job/core/handler/impl/GlueJobHandler.java

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

Loading…
Cancel
Save