超算接口bug

This commit is contained in:
chenpeng0206 2026-02-27 14:52:06 +08:00
parent e610f86438
commit 470464d191
1 changed files with 3 additions and 5 deletions

View File

@ -245,16 +245,14 @@ public class CSCollectServiceImpl implements CSCollectService {
*/
private String checkRunStatus(String status) {
switch (status) {
case "Saved":
case "Pending":
case "Deploying":
return "Pending";
case "Running":
return "Running";
case "Completed":
return "Succeeded";
case "Failed":
return "Failed";
}
return "Failed";
return "Pending";
}