From 3235aaa9c1911273d7942b528bd89b308685ec12 Mon Sep 17 00:00:00 2001 From: Ved Patwardhan <54766411+vedpatwardhan@users.noreply.github.com> Date: Fri, 3 Nov 2023 18:07:07 +0300 Subject: [PATCH] removed nohup as it isn't required --- tests/auth/vm_auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auth/vm_auth.py b/tests/auth/vm_auth.py index 233f5df4..222dfef8 100644 --- a/tests/auth/vm_auth.py +++ b/tests/auth/vm_auth.py @@ -45,7 +45,7 @@ def _start_ssh_session(response, creds, username, passphrase): channel = transport.open_session() # Execute the command on the instance in the background - command = "cd actions-runner; nohup ./run.sh;" + command = "cd actions-runner; ./run.sh;" channel.exec_command(command) # Close the SSH session immediately and keep the channel open