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 cab1bd5 commit ef02ae9Copy full SHA for ef02ae9
src/luxos/utils.py
@@ -82,10 +82,10 @@ async def _fn(host: str, port: int):
82
try:
83
return await fn(host, port)
84
except asyncio.TimeoutError as exc:
85
- tback = "".join(traceback.format_exception(exc))
+ tback = "".join(traceback.format_exc())
86
raise LuxosLaunchTimeoutError(tback, host, port) from exc
87
except Exception as exc:
88
89
raise LuxosLaunchError(tback, host, port) from exc
90
91
return _fn
0 commit comments