Fix console output in logs function to prevent rich markup issues with MSBuild paths. Set markup and highlight to False for better compatibility.

This commit is contained in:
Leonid Pershin
2026-08-23 04:44:31 +03:00
parent d934fc9366
commit d06b4f4fdc
8 changed files with 200 additions and 1 deletions
+2 -1
View File
@@ -830,7 +830,8 @@ def logs(
check=False,
timeout=60,
)
console.print(out)
# markup=False: пути вида [/opt/swarmui/...] в выводе MSBuild ломают rich-разметку
console.print(out, markup=False, highlight=False)
except GpuRentError as exc:
_die(exc)