Commit 02ebb5a0 by huangfusuper

正在执行中标记

parent 3b7e82ba
......@@ -26,9 +26,11 @@ public class JavaTaskCallbackThread implements Runnable {
JobTaskRunLogServiceImpl mythJobTaskRunLogService = SpringUtil.getBean(JobTaskRunLogServiceImpl.class);
Map<String,String> result = (Map<String,String>)pluginRpcResponsePacket.getResult();
JobTaskRunLogWithBLOBs jobTaskRunLog = new JobTaskRunLogWithBLOBs();
String code;
if(JobResultEnum.SUCCESS.getCode().equals(result.get("code"))){
String code= result.get("code");
if(JobResultEnum.SUCCESS.getCode().equals(code)){
code = RunResultEnum.RUN_SUCCESS.getCode();
}else if(JobResultEnum.DISPATCH_SUCCESS.getCode().equals(code)){
code = RunResultEnum.JOB_RUN_ING.getCode();
}else {
code = RunResultEnum.RUN_ERROR.getCode();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment