We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02b0a62 commit c7bf140Copy full SHA for c7bf140
1 file changed
juju/client/connection.py
@@ -451,13 +451,16 @@ async def close(self, to_reconnect=False):
451
if self._ws and not self._ws.closed:
452
await self._ws.close()
453
454
+ """
455
+ Temporarily disabling this to investigate CI blockage
456
try:
457
log.debug('Gathering all tasks for connection close')
458
await jasyncio.gather(*jasyncio.all_tasks())
459
except jasyncio.CancelledError:
460
pass
461
except websockets.exceptions.ConnectionClosed:
462
463
464
465
self._pinger_task = None
466
self._receiver_task = None
0 commit comments