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
This is what hits me first when I try to use aws/lambda, the problem is probably present for other related functions too.
According to https://docs.aws.amazon.com/lambda/latest/dg/API_CreateFunction.html, CreateFunction should not use any URI parameters, and all data should be JSON-encoded in HTTP payload. However, aws-sdk-lisp put everything in URI parameters. This generates a 414 URI too large error when submitting a ZipFile with size in the MBs, and will probably not function even if the ZipFile is small enough.
The text was updated successfully, but these errors were encountered:
This is what hits me first when I try to use
aws/lambda
, the problem is probably present for other related functions too.According to https://docs.aws.amazon.com/lambda/latest/dg/API_CreateFunction.html,
CreateFunction
should not use any URI parameters, and all data should be JSON-encoded in HTTP payload. However,aws-sdk-lisp
put everything in URI parameters. This generates a 414 URI too large error when submitting aZipFile
with size in the MBs, and will probably not function even if the ZipFile is small enough.The text was updated successfully, but these errors were encountered: