Skip to content

Commit 8632338

Browse files
committed
update pydevd patch
1 parent 81fe612 commit 8632338

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/helper-image/pydevd.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ index 2afae09..2985a35 100644
1111
ArgHandlerBool('multiproc'), # Used by PyCharm (reuses connection: ssh tunneling)
1212
ArgHandlerBool('multiprocess'), # Used by PyDev (creates new connection to ide)
1313
diff --git pydevd.py pydevd.py
14-
index 4639778..0da7e27 100644
14+
index 4639778..9ecfec0 100644
1515
--- pydevd.py
1616
+++ pydevd.py
1717
@@ -1376,6 +1376,8 @@ class PyDB(object):
1818

1919
def run(self):
2020
host = SetupHolder.setup['client']
2121
+ if host is None:
22-
+ host = 'localhost'
22+
+ host = ''
2323
port = SetupHolder.setup['port']
2424

2525
self._server_socket = create_server_socket(host=host, port=port)

0 commit comments

Comments
 (0)