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 c376500 commit a3f7793Copy full SHA for a3f7793
src/dstack/_internal/core/backends/lambdalabs/compute.py
@@ -206,10 +206,11 @@ def _launch_runner(
206
ssh_private_key: str,
207
launch_command: str,
208
):
209
+ daemonized_command = f"{launch_command.rstrip('&')} >/tmp/dstack-shim.log 2>&1 & disown"
210
_run_ssh_command(
211
hostname=hostname,
212
ssh_private_key=ssh_private_key,
- command=launch_command,
213
+ command=daemonized_command,
214
)
215
216
0 commit comments