Skip to content

Commit

Permalink
Do not remove outside queued
Browse files Browse the repository at this point in the history
  • Loading branch information
gerardsegarra committed Apr 26, 2024
1 parent 009f3cb commit 97b5515
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ def process_workflow_job():
node_ids[job.node_id] = job

elif job.action == "in_progress":
node_ids.pop(job.node_id, None)
job_requested = jobs.get(job.id)
time_to_start = None
if not job_requested:
Expand Down Expand Up @@ -110,7 +109,6 @@ def process_workflow_job():
jobs[job.id] = job

elif job.action == "completed":
node_ids.pop(job.node_id, None)
job_requested = jobs.get(job.id)
if not job_requested:
app.logger.warning(f"Job {job.id} is {job.action} but not stored!")
Expand Down

0 comments on commit 97b5515

Please sign in to comment.