Skip to content

Commit 766b605

Browse files
committed
Version bumped to 0.8.1.
Signed-off-by: Pavel Kirilin <[email protected]>
1 parent d322481 commit 766b605

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

poetry.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "taskiq"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
description = "Distributed task queue with full async support"
55
authors = ["Pavel Kirilin <[email protected]>"]
66
maintainers = ["Pavel Kirilin <[email protected]>"]

taskiq/cli/scheduler/run.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
from pycron import is_now
77

8-
from taskiq.abc.broker import AsyncBroker
98
from taskiq.cli.scheduler.args import SchedulerArgs
109
from taskiq.cli.utils import import_object, import_tasks
1110
from taskiq.scheduler.scheduler import ScheduledTask, TaskiqScheduler
@@ -72,7 +71,6 @@ async def run_scheduler(args: SchedulerArgs) -> None: # noqa: C901, WPS210, WPS
7271
7372
:param args: parsed CLI args.
7473
"""
75-
AsyncBroker.is_scheduler_process = True
7674
if isinstance(args.scheduler, str):
7775
scheduler = import_object(args.scheduler)
7876
else:

0 commit comments

Comments
 (0)