You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.
if the shutil.make_archive call fails (due to a multiprocessing race condition on mkdir), the process will throw out of the initial try/catch block and then throw again which blocks a return code from being captured by the Process.
Need to either check the process exitcode when joining or account for that undefined zip_size and return a breaking error code
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
lambda-packager/python/entrypoint.py
Line 394 in 0132532
if the
shutil.make_archive
call fails (due to a multiprocessing race condition onmkdir
), the process will throw out of the initial try/catch block and then throw again which blocks a return code from being captured by the Process.Need to either check the process exitcode when joining or account for that undefined zip_size and return a breaking error code
The text was updated successfully, but these errors were encountered: