We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f87bb4 commit a951651Copy full SHA for a951651
1 file changed
executorlib/task_scheduler/file/shared.py
@@ -112,9 +112,9 @@ def execute_tasks_h5(
112
cache_key=cache_key,
113
)
114
if task_key not in memory_dict:
115
- if task_key + "_o.h5" not in get_cache_files(
116
- cache_directory=cache_directory
117
- ):
+ if os.path.join(
+ cache_directory, task_key + "_o.h5"
+ ) not in get_cache_files(cache_directory=cache_directory):
118
file_name = os.path.join(cache_directory, task_key + "_i.h5")
119
dump(file_name=file_name, data_dict=data_dict)
120
if not disable_dependencies:
0 commit comments