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
During the pip download -r requirements.txt call that Chalice makes during packaging it does not properly propagate the error code from the subprocess up to Chalice so it doesn't ever error out if there was a failure.
Error codes were not returned which would result in pip failures not
cancelling the Chalice deploy process when they should. For example if
you provided a bad package name that pip failed to find the error would
be ignored and all the partial package would be deployed anyway.
Fixesaws#500
Error codes were not returned which would result in pip failures not
cancelling the Chalice deploy process when they should. For example if
you provided a bad package name that pip failed to find the error would
be ignored and all the partial package would be deployed anyway.
Fixesaws#500
Error codes were not returned which would result in pip failures not
cancelling the Chalice deploy process when they should. For example if
you provided a bad package name that pip failed to find the error would
be ignored and all the partial package would be deployed anyway.
Fixesaws#500
During the
pip download -r requirements.txt
call that Chalice makes during packaging it does not properly propagate the error code from the subprocess up to Chalice so it doesn't ever error out if there was a failure.Initial issue #497
The text was updated successfully, but these errors were encountered: