8000 Fix NameError in gunicorn/workers/gthread.py. · alex-python/gunicorn@6086e31 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6086e31

Browse files
committed
Fix NameError in gunicorn/workers/gthread.py.
1 parent 783984c commit 6086e31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gunicorn/workers/gthread.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def init(self):
6161
if self.parser is None:
6262
# wrap the socket if needed
6363
if self.cfg.is_ssl:
64-
self.sock = ssl.wrap_socket(client, server_side=True,
64+
self.sock = ssl.wrap_socket(self.sock, server_side=True,
6565
**self.cfg.ssl_options)
6666

6767
# initialize the parser
< 377D /td>

0 commit comments

Comments
 (0)
0