chore: enable logging format lint rule
Quality Gate / gate (push) Failing after 48s

Co-authored-by: Copilot App <[email protected]>
This commit is contained in:
Jim Lancaster
2026-08-23 18:19:05 -05:00
co-authored by Copilot App
parent 26f9c83f54
commit 736d0c06f4
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -190,7 +190,7 @@ async def advance_job(
session=session,
)
else:
logger.error(f"Job {job.id} has failed and reached max retries.")
logger.error("Job %s has failed and reached max retries.", job.id)
return
case _:
return
@@ -207,7 +207,7 @@ async def process_queued_job( # noqa: PLR0915
runtime_settings = settings or get_settings()
current_status = _coerce_job_status(job.status)
if current_status not in {JobStatus.QUEUED, JobStatus.PROCESSING}:
logger.warning(f"Job {job.id} is not queued. Current status: {job.status}")
logger.warning("Job %s is not queued. Current status: %s", job.id, job.status)
return
# Transaction A: claim job for processing. Reached only when a caller hands us a