Merge "Disable tracebacks of eventlet.wsgi.server"

This commit is contained in:
Zuul 2022-01-12 10:39:14 +00:00 committed by Gerrit Code Review
commit da9fd503ce
4 changed files with 7 additions and 5 deletions

View File

@ -27,7 +27,7 @@ future==0.16.0
futurist==1.2.0
gitdb==0.6.4
GitPython==1.0.1
greenlet==0.4.14
greenlet==0.4.16
httplib2==0.9.1
imagesize==0.7.1
iso8601==0.1.11
@ -72,7 +72,7 @@ oslo.privsep==2.3.0
oslo.reports==1.18.0
oslo.rootwrap==5.15.0
oslo.serialization==2.25.0
oslo.service==1.31.0
oslo.service==2.8.0
oslo.upgradecheck==1.3.0
oslo.utils==4.8.0
oslo.versionedobjects==1.35.1

View File

@ -210,7 +210,8 @@ class TestWSGIServer(base.BaseTestCase):
log=mock.ANY,
keepalive=CONF.wsgi_keep_alive,
log_format=CONF.wsgi_log_format,
socket_timeout=server.client_socket_timeout
socket_timeout=server.client_socket_timeout,
debug=False,
)

View File

@ -225,7 +225,8 @@ class Server(object):
log=LOG,
keepalive=CONF.wsgi_keep_alive,
log_format=CONF.wsgi_log_format,
socket_timeout=self.client_socket_timeout)
socket_timeout=self.client_socket_timeout,
debug=CONF.wsgi_server_debug)
@property
def process_launcher(self):

View File

@ -38,7 +38,7 @@ oslo.privsep>=2.3.0 # Apache-2.0
oslo.reports>=1.18.0 # Apache-2.0
oslo.rootwrap>=5.15.0 # Apache-2.0
oslo.serialization>=2.25.0 # Apache-2.0
oslo.service>=1.31.0 # Apache-2.0
oslo.service>=2.8.0 # Apache-2.0
oslo.upgradecheck>=1.3.0 # Apache-2.0
oslo.utils>=4.8.0 # Apache-2.0
oslo.versionedobjects>=1.35.1 # Apache-2.0