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 f5f2f2e commit b9ca0beCopy full SHA for b9ca0be
src/dstack/_internal/core/backends/hotaisle/compute.py
@@ -184,10 +184,11 @@ def _launch_runner(
184
ssh_private_key: str,
185
launch_command: str,
186
):
187
+ daemonized_command = f"{launch_command.rstrip('&')} >/tmp/dstack-shim.log 2>&1 & disown"
188
_run_ssh_command(
189
hostname=hostname,
190
ssh_private_key=ssh_private_key,
- command=launch_command,
191
+ command=daemonized_command,
192
)
193
194
0 commit comments