diff options
| author | Jenkins <jenkins@review.openstack.org> | 2013-06-18 17:16:57 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2013-06-18 17:16:57 +0000 |
| commit | abd69893cdedaa845eb9418b86077845a0415c6a (patch) | |
| tree | 82cfd6c77ac4b87ab2aff7090f7e45d477c3fec9 /nova | |
| parent | 086ec7a5b857fa1b88877c10991801761d819c98 (diff) | |
| parent | 260c534e7536406cbf4a759f923f039d8e34481c (diff) | |
Merge "Raise max header size to accommodate large tokens."
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/wsgi.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nova/wsgi.py b/nova/wsgi.py index 72e464919..2e3f66f0d 100644 --- a/nova/wsgi.py +++ b/nova/wsgi.py @@ -37,6 +37,9 @@ from nova import exception from nova.openstack.common import excutils from nova.openstack.common import log as logging +# Raise the default from 8192 to accommodate large tokens +eventlet.wsgi.MAX_HEADER_LINE = 16384 + wsgi_opts = [ cfg.StrOpt('api_paste_config', default="api-paste.ini", |
