Skip to content

Commit ea8227b

Browse files
committed
Merge branch 'release/0.1.1'
2 parents 03f162e + 4d50941 commit ea8227b

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
if: matrix.py_version == '3.9'
8080
with:
8181
token: ${{ secrets.CODECOV_TOKEN }}
82-
fail_ci_if_error: true
82+
fail_ci_if_error: false
8383
verbose: true
8484
- name: Stop containers
8585
if: always()

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-nats"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "NATS integration for taskiq"
55
authors = ["taskiq-team <taskiq@norely.com>"]
66
readme = "README.md"

taskiq_nats/broker.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,3 +79,4 @@ async def listen(self) -> AsyncGenerator[BrokerMessage, None]:
7979
async def shutdown(self) -> None:
8080
"""Close connections to NATS."""
8181
await self.client.close()
82+
await super().shutdown()

0 commit comments

Comments
 (0)