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
When using the flask request object (which comes from the werkzeug library), I find that using the tiangolo/meinheld-gunicorn-flask:python3.8 docker image the request.query_string attribute is of type str, while the werkzeug documentation clearly states that it should be of type bytes:
query_string
The URL parameters as raw bytestring.
This resulted in issues in migrating an existing application to the tiangolo/meinheld-gunicorn-flask:python3.8 docker image, since it tried to decode request.query_string (str objects have no .decode method).
The text was updated successfully, but these errors were encountered:
This is a repost from tiangolo/meinheld-gunicorn-flask-docker#38 , which was determined to be an issue with
meinheld
.The text was updated successfully, but these errors were encountered: