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 f46849e commit 1fb486eCopy full SHA for 1fb486e
src/dstack/_internal/cli/utils/run.py
@@ -129,7 +129,10 @@ def th(s: str) -> str:
129
props.add_row(th("User"), run_plan.user)
130
if include_run_properties:
131
props.add_row(th("Configuration"), run_spec.configuration_path)
132
- props.add_row(th("Type"), run_spec.configuration.type)
+ configuration_type = run_spec.configuration.type
133
+ if run_spec.configuration.type == "task":
134
+ configuration_type += f" (nodes={run_spec.configuration.nodes})"
135
+ props.add_row(th("Type"), configuration_type)
136
props.add_row(th("Resources"), pretty_req)
137
props.add_row(th("Spot policy"), spot_policy)
138
props.add_row(th("Max price"), max_price)
0 commit comments