Переглянути джерело

feat: 电子稳相:终止接口添加logPath

WANGKANG 7 місяців тому
батько
коміт
6260dd2b13

+ 1 - 0
taais-modules/taais-biz/src/main/java/com/taais/biz/service/impl/VideoStableServiceImpl.java

@@ -327,6 +327,7 @@ public class VideoStableServiceImpl extends BaseServiceImpl<VideoStableMapper, V
     public CommonResult stop(Long id) {
         VideoStable videoStable = getById(id);
 
+        videoStable.setLogPath(videoStable.getOutputPath() + File.separator + getLogFileName(videoStable));
         HttpResponseEntity responseEntity = sendPostMsg(video_stable_stop_url, videoStable);
         if (ObjectUtil.isNotNull(responseEntity) && responseEntity.getStatus() == 200) {
             videoStable.setStatus(BizConstant.VideoStatus.INTERRUPTED);