Skip to content

Commit f61a967

Browse files
Merge pull request #491 from dave2309/avoid-vim-to-hang-on-stop
Avoid vim to hang on debugger close
2 parents 15b6910 + ec99995 commit f61a967

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

‎python3/vdebug/connection.py‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,6 @@ async def run_async(self):
185185
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
186186
s.bind((self.__host, self.__port))
187187
s.listen(5)
188-
s.settimeout(5)
189188
while 1:
190189
try:
191190
# using ensure_future here since before 3.7, this is not a coroutine, but returns a future

0 commit comments

Comments
 (0)