Browse Source

自动机器学习开发

dev-automl
chenzhihang 1 year ago
parent
commit
283b166420
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/service/impl/AutoMlInsServiceImpl.java

+ 2
- 1
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/service/impl/AutoMlInsServiceImpl.java View File

@@ -230,7 +230,8 @@ public class AutoMlInsServiceImpl implements AutoMlInsService {

@Override
public AutoMlIns getDetailById(Long id) {
return this.autoMlInsDao.queryById(id);
AutoMlIns autoMlIns = this.autoMlInsDao.queryById(id);
return queryStatusFromArgo(autoMlIns);
}

public void updateAutoMlStatus(Long autoMlId) {


Loading…
Cancel
Save