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
if chalice doesn't support them, this should be (1) a documented limitation, and (2) there should be a friendly explanation that the function as written is incompatible with chalice and to either rewrite it or find another deployment solution
I have a working lambda function and am trying to migrate to chalice. This lambda function includes a Python async function:
When I run
chalice deploy
, the deploy fails cryptically:$ chalice deploy Loading function Regen deployment package. 'xml_request' $
(
xml_request
is a variable in my lambda function, not sure if that's a coincidence or if chalice has a similar variable name.)If I comment out the
async def
function, the deploy goes smoothly.CC @rajasimon
The text was updated successfully, but these errors were encountered: