mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
Fix NameError in gunicorn/workers/gthread.py.
This commit is contained in:
parent
783984cabd
commit
6086e31d07
@ -61,7 +61,7 @@ class TConn(object):
|
||||
if self.parser is None:
|
||||
# wrap the socket if needed
|
||||
if self.cfg.is_ssl:
|
||||
self.sock = ssl.wrap_socket(client, server_side=True,
|
||||
self.sock = ssl.wrap_socket(self.sock, server_side=True,
|
||||
**self.cfg.ssl_options)
|
||||
|
||||
# initialize the parser
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user