Catch error when cannot resize Docker container TTY.

This commit is contained in:
grossmj
2024-11-07 14:52:59 +10:00
parent fb06eb3c0c
commit f3749e83ec
2 changed files with 8 additions and 7 deletions

View File

@ -710,7 +710,10 @@ class DockerVM(BaseNode):
"""
# resize the container TTY.
await self._manager.query("POST", "containers/{}/resize?h={}&w={}".format(self._cid, rows, columns))
try:
await self._manager.query("POST", "containers/{}/resize?h={}&w={}".format(self._cid, rows, columns))
except DockerError as e:
log.warning(f"Could not resize the container TTY: {e}")
async def _start_console(self):
"""