Unverified Commit d05795f2 authored by Keiven C's avatar Keiven C Committed by GitHub
Browse files

chore: reorder dynamo_check.py output (very minor) (#3081)


Signed-off-by: default avatarKeiven Chang <keivenchang@users.noreply.github.com>
Co-authored-by: default avatarKeiven Chang <keivenchang@users.noreply.github.com>
parent 86ce03f4
......@@ -316,9 +316,6 @@ class SystemInfo(NodeInfo):
# Add Framework info (vllm, sglang, tensorrt_llm)
self.add_child(FrameworkInfo())
# Add Dynamo workspace info (always show, even if not found)
self.add_child(DynamoInfo(thorough_check=self.thorough_check))
# In terse mode, only add other components if they have errors
if not self.terse:
# Add file permissions check
......@@ -336,6 +333,9 @@ class SystemInfo(NodeInfo):
# In terse mode, only add components that have errors
self._add_error_only_components()
# Add Dynamo workspace info (always show, even if not found)
self.add_child(DynamoInfo(thorough_check=self.thorough_check))
def _get_ip_address(self) -> Optional[str]:
"""Get the primary IP address of the system."""
try:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment