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
Flask 0.11 Changed the order in which errorhandlers are executed and they added the type of the error handler in there making any app that registers flask-api to throw an error before being able to execute the proper error handler (app.py line 91)
What seems to work for me is to add the following in app.py:91
for typecheck, handler in chain(blueprint_handlers.items(), app_handlers.items()):
since blueprint_handlers and app_handlers are now both dict objects
The text was updated successfully, but these errors were encountered:
Flask 0.11 Changed the order in which errorhandlers are executed and they added the type of the error handler in there making any app that registers flask-api to throw an error before being able to execute the proper error handler (app.py line 91)
What seems to work for me is to add the following in app.py:91
since blueprint_handlers and app_handlers are now both
dict
objectsThe text was updated successfully, but these errors were encountered: