We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8a1f44 commit fdb2446Copy full SHA for fdb2446
pyls/python_ls.py
@@ -45,6 +45,8 @@ def start_tcp_lang_server(bind_addr, port, handler_class):
45
)
46
47
server = socketserver.TCPServer((bind_addr, port), wrapper_class)
48
+ server.allow_reuse_address = True
49
+
50
try:
51
log.info('Serving %s on (%s, %s)', handler_class.__name__, bind_addr, port)
52
server.serve_forever()
0 commit comments