mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Add DebugClient._connecttimeout.
This commit is contained in:
parent
f3bfa1cff7
commit
9d4e014517
1 changed files with 2 additions and 1 deletions
|
|
@ -12,9 +12,10 @@ from .debugsession import DebugSession
|
|||
|
||||
class _LifecycleClient(Closeable):
|
||||
|
||||
def __init__(self, port=8888, breakpoints=None):
|
||||
def __init__(self, port=8888, breakpoints=None, connecttimeout=1.0):
|
||||
super(_LifecycleClient, self).__init__()
|
||||
self._port = port
|
||||
self._connecttimeout = connecttimeout
|
||||
self._adapter = None
|
||||
self._session = None
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue