|
|
|
@@ -230,7 +230,11 @@ public class AutoMlInsServiceImpl implements AutoMlInsService { |
|
|
|
|
|
|
|
@Override |
|
|
|
public AutoMlIns getDetailById(Long id) { |
|
|
|
return this.autoMlInsDao.queryById(id); |
|
|
|
AutoMlIns autoMlIns = this.autoMlInsDao.queryById(id); |
|
|
|
if(Constant.Running.equals(autoMlIns.getStatus()) || Constant.Pending.equals(autoMlIns.getStatus())){ |
|
|
|
autoMlIns = queryStatusFromArgo(autoMlIns); |
|
|
|
} |
|
|
|
return autoMlIns; |
|
|
|
} |
|
|
|
|
|
|
|
public void updateAutoMlStatus(Long autoMlId) { |
|
|
|
|