Skip to content

Commit 755f873

Browse files
committed
Fix log context in worker middleware
1 parent b02fdcd commit 755f873

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plain-worker/plain/worker/middleware.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def __init__(self, run_job):
66
self.run_job = run_job
77

88
def __call__(self, job):
9-
with app_logger.with_context(
9+
with app_logger.include_context(
1010
job_request_uuid=str(job.job_request_uuid), job_uuid=str(job.uuid)
1111
):
1212
return self.run_job(job)

0 commit comments

Comments
 (0)