Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion executorlib/task_scheduler/file/task_scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ def __init__(
if execute_function == execute_in_subprocess and terminate_function is None:
terminate_function = terminate_subprocess
cache_directory_path = os.path.abspath(cache_directory)
os.makedirs(cache_directory_path, exist_ok=True)
self._process_kwargs = {
"future_queue": self._future_queue,
"execute_function": execute_function,
Expand Down
1 change: 0 additions & 1 deletion executorlib/task_scheduler/interactive/shared.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ def _execute_task_with_cache(
resource_dict=task_dict.get("resource_dict", {}),
cache_key=cache_key,
)
os.makedirs(cache_directory, exist_ok=True)
file_name = os.path.abspath(os.path.join(cache_directory, task_key + "_o.h5"))
if file_name not in get_cache_files(cache_directory=cache_directory):
f = task_dict.pop("future")
Expand Down
Loading