diff --git a/src/main/python/ddadevops/infrastructure/infrastructure.py b/src/main/python/ddadevops/infrastructure/infrastructure.py index 6e8e1df..2007119 100644 --- a/src/main/python/ddadevops/infrastructure/infrastructure.py +++ b/src/main/python/ddadevops/infrastructure/infrastructure.py @@ -225,9 +225,7 @@ class TerraformBackendGitApi: env = "" for key in credentials: env = env + f'{key}' + "=" + f'{credentials[key]}' + " " - self.execution_api.execute(f'{env}' + " " + "terraform-backend-git &") - self.execution_api.execute('sleep 3') - + self.execution_api.execute_live(f"{env} nohup terraform-backend-git &") def stop(self): self.execution_api.execute("terraform-backend-git stop")