Skip to content

Commit

Permalink
Merge branch 'release/0.10.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
s3rius committed Oct 19, 2023
2 parents 6df4308 + 5a6e980 commit 9a6e49f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "taskiq"
version = "0.10.1"
version = "0.10.2"
description = "Distributed task queue with full async support"
authors = ["Pavel Kirilin <[email protected]>"]
maintainers = ["Pavel Kirilin <[email protected]>"]
Expand Down
1 change: 1 addition & 0 deletions taskiq/cli/worker/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ def interrupt_handler(signum: int, _frame: Any) -> None:
loop = uvloop.new_event_loop() # type: ignore
else:
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
# This option signals that current
# broker is running as a worker.
# We must set this field before importing tasks,
Expand Down

0 comments on commit 9a6e49f

Please sign in to comment.