From ee259147ec7d3c743933c0546886a74d691bc876 Mon Sep 17 00:00:00 2001 From: jan-janssen Date: Fri, 19 Jun 2026 11:15:53 +0200 Subject: [PATCH] [Fix] Write spawner file to executorlib cache --- src/executorlib/task_scheduler/interactive/spawner_pysqa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/executorlib/task_scheduler/interactive/spawner_pysqa.py b/src/executorlib/task_scheduler/interactive/spawner_pysqa.py index 3d5b9db58..6366089ea 100644 --- a/src/executorlib/task_scheduler/interactive/spawner_pysqa.py +++ b/src/executorlib/task_scheduler/interactive/spawner_pysqa.py @@ -189,7 +189,7 @@ def _start_process_helper( if self._cwd is not None: working_directory = os.path.join(self._cwd, hash) else: - working_directory = os.path.abspath(hash) + working_directory = os.path.join(os.path.abspath("executorlib_cache"), hash) set_current_directory_in_environment() return queue_adapter.submit_job( command=" ".join(self.generate_command(command_lst=command_lst)),