Skip to content

Commit

Permalink
fix: 🐛 fix CI (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
severo authored Feb 25, 2022
1 parent 3440c9e commit 532d6ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/datasets_preview_backend/io/queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ def finish_started_job(jobs: QuerySet[AnyJob], job_id: str, success: bool) -> bo
try:
job = jobs(pk=job_id).get()
except DoesNotExist:
logger.warning(f"started job {job.to_id()} does not exist. Aborting.")
logger.warning(f"started job {job_id} does not exist. Aborting.")
return False
if job.status is not Status.STARTED:
logger.warning(f"started job {job.to_id()} has a not the STARTED status. Aborting.")
Expand Down

0 comments on commit 532d6ca

Please sign in to comment.