We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c412f39 commit 98e1e45Copy full SHA for 98e1e45
txstratum/protocol.py
@@ -186,6 +186,8 @@ def connection_lost(self, exc: Optional[Exception]) -> None:
186
asyncio.ensure_future(self.estimator_task.stop())
187
if self.refresh_job_task:
188
asyncio.ensure_future(self.refresh_job_task.stop())
189
+ if self.messages_timeout_task:
190
+ asyncio.ensure_future(self.messages_timeout_task.stop())
191
192
def ask_miner_to_reconnect(self) -> None:
193
"""Ask the miner to reconnect. We just want to force it to disconnect with this."""
0 commit comments