Skip to content

Commit

Permalink
Fix skip server-process creation for children of socket connections
Browse files Browse the repository at this point in the history
Actually remove server process creation for children of socket
connections, this was the purpose the following commit 7fa8883.

Fixes #112
  • Loading branch information
svaante committed Jun 30, 2024
1 parent 4883c5a commit 54e160e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dape.el
Original file line number Diff line number Diff line change
Expand Up @@ -1830,7 +1830,7 @@ Starts a new adapter CONNs from ARGUMENTS."
Starts a new adapter connection as per request of the debug adapter."
(let ((config (plist-get arguments :configuration))
(request (plist-get arguments :request)))
(cl-loop with socket-conn-p = (plist-get config 'port)
(cl-loop with socket-conn-p = (plist-get (dape--config conn) 'port)
for (key value) on (dape--config conn) by 'cddr
unless (or (keywordp key)
(and socket-conn-p (eq key 'command)))
Expand Down

0 comments on commit 54e160e

Please sign in to comment.