1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-12-30 18:50:58 +00:00

Fix reset console for non running IOU devices

This commit is contained in:
grossmj 2024-05-18 23:30:58 +07:00
parent 990dabb7e4
commit d477eb8366
No known key found for this signature in database
GPG Key ID: 0A2D76AC45EA25CD

View File

@ -661,7 +661,8 @@ class IOUVM(BaseNode):
self._telnet_server.close()
await self._telnet_server.wait_closed()
self._telnet_server = None
await self.start_console()
if self.is_running():
await self.start_console()
@locking
async def _networking(self):