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 2caf5d7 commit c16a572Copy full SHA for c16a572
nemo_run/core/execution/skypilot.py
@@ -107,6 +107,7 @@ class SkypilotExecutor(Executor):
107
cluster_config_overrides: Optional[dict[str, Any]] = None
108
infra: Optional[str] = None
109
network_tier: Optional[str] = None
110
+ retry_until_up: bool = False
111
packager: Packager = field(default_factory=lambda: GitArchivePackager()) # type: ignore # noqa: F821
112
113
def __post_init__(self):
@@ -410,7 +411,7 @@ def launch(
410
411
idle_minutes_to_autostop=self.idle_minutes_to_autostop,
412
down=self.autodown,
413
fast=True,
- # retry_until_up=retry_until_up,
414
+ retry_until_up=self.retry_until_up,
415
# clone_disk_from=clone_disk_from,
416
)
417
0 commit comments