Compare commits
3 Commits
60dafdc9df
...
53c80f1777
| Author | SHA1 | Date |
|---|---|---|
|
|
53c80f1777 | |
|
|
76622c2b2c | |
|
|
aabefb00c2 |
|
|
@ -34,7 +34,7 @@ const ResultPage: React.FC = () => {
|
|||
// 任务失败,停止轮询并设置错误
|
||||
setError('任务执行失败');
|
||||
return;
|
||||
} else if (result.status === 'running' || result.status === 'pending') {
|
||||
} else if (result.status === 'running' || result.status === 'pending' || result.status === 'pending_audit') {
|
||||
// 任务仍在进行中,继续轮询
|
||||
if (attempts < maxAttempts) {
|
||||
timerRef.current = setTimeout(poll, 1000);
|
||||
|
|
|
|||
Loading…
Reference in New Issue