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 have same issue.
zappa does not encode the value of the url parameter. http://url.com?a=abc,dfg -> http://url.com?a=abc%2Cdfg
Like this, the url encoded value is transmit as it is. In the example, %2C.
Normally %2C is transmit as,.
When the url has some querystring like:
http://domain.com/path/to/view/?query=some%40mail.com
django wait to receive this:
with Zappa 0.51.0 and Django 3.0.5 and python 3.7 on Lambda and ALB
this is the actual behavior
So I made this small middleware to quick fix:
and add this middleware as first of your list of middlewares
this is my zappa_settings.json
The text was updated successfully, but these errors were encountered: