We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59e3843 commit ecc55e2Copy full SHA for ecc55e2
packages/stompman/stompman/client.py
@@ -86,6 +86,7 @@ def __post_init__(self) -> None:
86
87
async def __aenter__(self) -> Self:
88
self._task_group = await self._exit_stack.enter_async_context(asyncio.TaskGroup())
89
+ # TODO: move this tasks to lifespan
90
self._send_heartbeat_task = self._task_group.create_task(asyncio.sleep(0))
91
self._check_server_heartbeat_task = self._task_group.create_task(asyncio.sleep(0))
92
await self._exit_stack.enter_async_context(self._connection_manager)
0 commit comments