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 585ad41 commit 0275086Copy full SHA for 0275086
sdks/python/apache_beam/runners/portability/stager.py
@@ -218,7 +218,7 @@ def create_job_resources(
218
is None) else setup_options.requirements_cache)
219
if (setup_options.requirements_cache != SKIP_REQUIREMENTS_CACHE and
220
not os.path.exists(requirements_cache_path)):
221
- os.makedirs(requirements_cache_path)
+ os.makedirs(requirements_cache_path, exist_ok=True)
222
223
# Stage a requirements file if present.
224
if setup_options.requirements_file is not None:
0 commit comments