Skip to content

Commit ee25914

Browse files
committed
[Fix] Write spawner file to executorlib cache
1 parent 4848ef9 commit ee25914

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/executorlib/task_scheduler/interactive/spawner_pysqa.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def _start_process_helper(
189189
if self._cwd is not None:
190190
working_directory = os.path.join(self._cwd, hash)
191191
else:
192-
working_directory = os.path.abspath(hash)
192+
working_directory = os.path.join(os.path.abspath("executorlib_cache"), hash)
193193
set_current_directory_in_environment()
194194
return queue_adapter.submit_job(
195195
command=" ".join(self.generate_command(command_lst=command_lst)),

0 commit comments

Comments
 (0)