|
@@ -461,12 +461,12 @@ public class DataServiceImpl extends BaseServiceImpl<DataMapper, Data> implement
|
|
|
}
|
|
|
|
|
|
// post request
|
|
|
- Map<String, String> params = new HashMap<>();
|
|
|
+ Map<String, Object> params = new HashMap<>();
|
|
|
params.put("bizType", TYPE_DATA_EXPAND);
|
|
|
params.put("bizId", String.valueOf(taskVo.getId()));
|
|
|
- params.put("logPath", DOCKER_BASE_PATH + filepath + "/log.log");
|
|
|
+ params.put("logPath", PATH_PREFIX + filepath + "/log.log");
|
|
|
params.put("sourcePath", PATH_PREFIX + filepath);
|
|
|
- params.put("otherParams", JSONUtil.toJsonStr(realOtherParams));
|
|
|
+ params.put("otherParams", realOtherParams);
|
|
|
|
|
|
String[] outputs = taskVo.getOutputImagePath().split(";");
|
|
|
log.info("check outputs: {} ; {}", outputs, outputs[0]);
|