Skip to content

Commit dec9c5c

Browse files
committed
fix logging error
1 parent 74f7a75 commit dec9c5c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

steady_queue/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from datetime import timedelta
22
from typing import Optional
33

4-
VERSION = (0, 1, "0b5")
4+
VERSION = (0, 1, "0b6")
55

66
__version__ = ".".join(map(str, VERSION))
77

steady_queue/processes/worker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def poll(self) -> timedelta:
3232
claimed_executions = self.claim_executions()
3333
for execution in claimed_executions:
3434
logger.info(
35-
"%(worker)s claimed job %(job_id)s %(task_name)s",
35+
"%(worker)s claimed job %(job_id)s %(class_name)s",
3636
{
3737
"worker": self.name,
3838
"job_id": execution.job_id,

0 commit comments

Comments
 (0)