|
@@ -36,11 +36,11 @@ public class AsyncToolMessageReceiver {
|
|
|
JSONObject jResult = JSONObject.fromObject(sResult.toString());
|
|
|
String jobId = jResult.getString("jobId");
|
|
|
int returnCode = jResult.getInt("returnCode");
|
|
|
- String resultDetail = asyncScheduleService.getJobResult(jobId).getResult();
|
|
|
|
|
|
int jobStatus = returnCode==ReturnCodeConstants.SUCCESS? AsyncJobStatus.SUCCESS:AsyncJobStatus.FAIL;
|
|
|
|
|
|
try{
|
|
|
+ String resultDetail = asyncScheduleService.getJobResult(jobId).getResult();
|
|
|
asyncScheduleService.processJobResult(jobId, resultDetail, returnCode);
|
|
|
LOG.info("receiver:"+ sResult);
|
|
|
} catch (Exception e) {
|