Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions taskiq/abc/broker.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ def __init__(
self.custom_dependency_context: Dict[Any, Any] = {}
self.dependency_overrides: Dict[Any, Any] = {}
# True only if broker runs in worker process.
self.is_worker_process: bool = False
self.is_worker_process = False
# True only if broker runs in scheduler process.
self.is_scheduler_process: bool = False
self.is_scheduler_process = False

def find_task(self, task_name: str) -> Optional[AsyncTaskiqDecoratedTask[Any, Any]]:
"""
Expand Down