Browse Source

tj

master
educoder 3 years ago
parent
commit
af69071ebd
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      web/src/main/java/com/imitate/web/module/game/controller/VscodeController.java

+ 1
- 2
web/src/main/java/com/imitate/web/module/game/controller/VscodeController.java View File

@@ -141,8 +141,7 @@ public class VscodeController {
RunPod runPod = runPodService.getRunPodByName(podName); RunPod runPod = runPodService.getRunPodByName(podName);
//存活秒数 //存活秒数
respData.put("remainingTime",runPodService.getRemainingTime(runPod)); respData.put("remainingTime",runPodService.getRemainingTime(runPod));

return R.ok(respData);
return R.ok().setData(respData);
} }
} }




Loading…
Cancel
Save