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 ecc591d commit b9cc1efCopy full SHA for b9cc1ef
src/dstack/_internal/core/compatibility/runs.py
@@ -31,6 +31,8 @@ def get_apply_plan_excludes(plan: ApplyRunPlanInput) -> Optional[IncludeExcludeD
31
current_resource_excludes["status_message"] = True
32
if current_resource.deployment_num == 0:
33
current_resource_excludes["deployment_num"] = True
34
+ if current_resource.fleet is None:
35
+ current_resource_excludes["fleet"] = True
36
apply_plan_excludes["current_resource"] = current_resource_excludes
37
current_resource_excludes["run_spec"] = get_run_spec_excludes(current_resource.run_spec)
38
job_submissions_excludes: IncludeExcludeDictType = {}
0 commit comments