Skip to content

Commit 9a6e49f

Browse files
committed
Merge branch 'release/0.10.2'
2 parents 6df4308 + 5a6e980 commit 9a6e49f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

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.10.1"
3+
version = "0.10.2"
44
description = "Distributed task queue with full async support"
55
authors = ["Pavel Kirilin <[email protected]>"]
66
maintainers = ["Pavel Kirilin <[email protected]>"]

taskiq/cli/worker/run.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ def interrupt_handler(signum: int, _frame: Any) -> None:
117117
loop = uvloop.new_event_loop() # type: ignore
118118
else:
119119
loop = asyncio.new_event_loop()
120+
asyncio.set_event_loop(loop)
120121
# This option signals that current
121122
# broker is running as a worker.
122123
# We must set this field before importing tasks,

0 commit comments

Comments
 (0)