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 833db95 commit 1213de2Copy full SHA for 1213de2
1 file changed
executorlib/task_scheduler/file/task_scheduler.py
@@ -61,12 +61,10 @@ def __init__(
61
)
62
if execute_function == execute_in_subprocess and terminate_function is None:
63
terminate_function = terminate_subprocess
64
- cache_directory_path = os.path.abspath(cache_directory)
65
- os.makedirs(cache_directory_path, exist_ok=True)
66
self._process_kwargs = {
67
"future_queue": self._future_queue,
68
"execute_function": execute_function,
69
- "cache_directory": cache_directory_path,
+ "cache_directory": os.path.abspath(cache_directory),
70
"resource_dict": resource_dict,
71
"terminate_function": terminate_function,
72
"pysqa_config_directory": pysqa_config_directory,
0 commit comments