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
should use HTTP_ACCEPT_ENCODING to replace ACCEPT_ENCODING at line 290 in server.py to fix this bug.
from:
environ.get('ACCEPT_ENCODING', '').split(',')]
to
environ.get('HTTP_ACCEPT_ENCODING', '').split(',')]
The text was updated successfully, but these errors were encountered:
The gzip not working!
should use HTTP_ACCEPT_ENCODING to replace ACCEPT_ENCODING at line 290 in server.py to fix this bug.
from:
environ.get('ACCEPT_ENCODING', '').split(',')]
to
environ.get('HTTP_ACCEPT_ENCODING', '').split(',')]
The text was updated successfully, but these errors were encountered: