Skip to content
This repository has been archived by the owner on Jan 2, 2024. It is now read-only.

bug/ added continue to prevent continuous reload in submission status update #831

Merged
merged 1 commit into from
Nov 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/taipy/core/submission/submission.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,14 +146,19 @@ def _update_submission_status(self, _: Job):
return
if job.is_canceled():
canceled = True
continue
if job.is_blocked():
blocked = True
continue
if job.is_pending() or job.is_submitted():
pending = True
continue
if job.is_running():
running = True
continue
if job.is_completed() or job.is_skipped():
completed = True
continue
if job.is_abandoned():
abandoned = True
if canceled:
Expand Down
Loading