Skip to content

Commit 1d3818a

Browse files
committed
Ensure that the seq for the first message is 1 as required by the protocol
1 parent 5e24df8 commit 1d3818a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python3/vimspector/debug_adapter_connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def __init__( self,
5151
self._buffer = bytes()
5252
self._handlers = handlers
5353
self._session_id = session_id
54-
self._next_message_id = 0
54+
self._next_message_id = 1
5555
self._outstanding_requests = {}
5656
self.async_timeout = async_timeout
5757
self.sync_timeout = sync_timeout

0 commit comments

Comments
 (0)