Lily Acadia Gilbert

Results 29 comments of Lily Acadia Gilbert

That's a really interesting idea. I don't think that detracts from the readability of what I'm trying to do, and hopefully can get that working. I'll play with that and...

It looks like this doesn't work either (unless I am missing something here). Even with `[--update=]`, if I pass anything in with `--update` it still ends up in the `search_args`...

That's interesting. Thanks for catching that. It should be really easy to add an extra guard for that, I'll take a look at updating some stuff in the example to...

It is an error with rest plus breaking native flask error handlers. Look at #83 for the details.

I've thought of a better way to solve this. It is very much a hack, and I still think flask-restplus should fix their extension so that it does not break...

It works for me if I try the following. Are you doing something different?: ```python from flask import Flask, jsonify, request from flask_jwt_extended import ( JWTManager, jwt_required, create_access_token, get_jwt_identity )...

Thanks for your work on this! Hopefully this will lead to changes in flask-restplus where native flask error handlers will just work. In the mean time, I tried to duplicate...

The problem that I am seeing in python2 with my hack applied stems from here: https://github.com/noirbizarre/flask-restplus/blob/master/flask_restplus/api.py#L583 My error handlers return a flask response, not a python dictionary, which ends up...

I am not aware of any changes that have not been outlined in this ticket. If flask-restful is still bypassing the built in flask error handlers (make sure you have...

Yeah, for whatever reason when you are using flask-restful you will need to set `app.config['PROPAGATE_EXCEPTIONS'] = True` in order for the error handlers to properly work. I would expect that...