GlueJobHandler can not exec init(),destroy() #2210
This commit is contained in:
majingjing 2021-01-21 13:54:46 +08:00
parent 3b4067a7b5
commit 2adf718d06
1 changed files with 38 additions and 29 deletions

View File

@ -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();
}
}