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
I'm working on deployment for a my new Chalice-based project (using version 1.0.2.)
When I run chalice deploy I get the error maximum recursion depth exceeded with no stack trace. After running the debugger, I was able to narrow down the problem to Chalice's AST traversal code. From there, I created a reduction using my app.py. Given this, it appears as though the AST traversal code does not tolerate recursion.
Here's the reduced app.py. If I remove the recursive function, then chalice deploy appears to work as expected.
Hey all,
I'm working on deployment for a my new Chalice-based project (using version 1.0.2.)
When I run
chalice deploy
I get the errormaximum recursion depth exceeded
with no stack trace. After running the debugger, I was able to narrow down the problem to Chalice's AST traversal code. From there, I created a reduction using myapp.py
. Given this, it appears as though the AST traversal code does not tolerate recursion.Here's the reduced
app.py
. If I remove the recursive function, thenchalice deploy
appears to work as expected.The text was updated successfully, but these errors were encountered: