less verbose node hop if not in debug mode

This commit is contained in:
Dobromir Popov
2026-06-30 17:44:21 +03:00
parent 6e4f755e71
commit 5fe471d8ca
5 changed files with 1533 additions and 2 deletions

View File

@@ -223,6 +223,7 @@ def run_startup(
contracts: Any | None = None,
route_timeout: float = 30.0,
vram_mb_override: int | None = None,
debug: bool = False,
) -> StubNodeServer | TorchNodeServer:
"""Execute the full startup sequence and return a running node server.
@@ -320,6 +321,7 @@ def run_startup(
quantization=quantization,
tracker_url=tracker_url,
route_timeout=route_timeout,
debug=debug,
)
_node_start_time = time.monotonic()
actual_port = node.start()
@@ -414,6 +416,7 @@ def run_startup(
quantization=quantization,
tracker_url=tracker_url,
route_timeout=route_timeout,
debug=debug,
)
_node_start_time = time.monotonic()
actual_port = node.start()