mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
Strip whitespace also *after* header field value. Simply refuse obsolete header folding (a default-off option to revert is temporarily provided). While we are at it, explicitly handle recently introduced http error classes with intended status code.
11 lines
336 B
Python
11 lines
336 B
Python
from gunicorn.config import Config
|
|
from gunicorn.http.errors import LimitRequestHeaders
|
|
|
|
request = LimitRequestHeaders
|
|
cfg = Config()
|
|
cfg.set('limit_request_field_size', 14)
|
|
|
|
# once this option is removed, this test should not be dropped;
|
|
# rather, add something involving unnessessary padding
|
|
cfg.set('permit_obsolete_folding', True)
|