2
0

fix(config): Enable http-chunked-input for UWSGI (#376)

Fixes getsentry/sentry#16596
This commit is contained in:
Burak Yigit Kaya 2020-02-03 19:15:40 +03:00 committed by GitHub
parent 37d6166032
commit fd9bd107df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -158,6 +158,7 @@ SENTRY_WEB_OPTIONS = {
# This is needed to prevent https://git.io/fj7Lw # This is needed to prevent https://git.io/fj7Lw
"uwsgi-socket": None, "uwsgi-socket": None,
"http-keepalive": True, "http-keepalive": True,
"http-chunked-input": True,
"memory-report": False, "memory-report": False,
# 'workers': 3, # the number of web workers # 'workers': 3, # the number of web workers
} }