Skip to content

Commit

Permalink
fix ensure_connected
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGeorge committed Mar 2, 2021
1 parent 179042c commit 7f23b2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/els_dap/src/els_dap_general_provider.erl
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ handle_info( {int_cb, ThreadPid}
running ->
els_dap_rpc:continue(ProjectNode, ThreadPid);
_ ->
els_dap_server:send_event(<<"stopped">>, #{ <<"reason">> => <<"breakpoint">>
els_dap_server:send_event(<<"stopped">>, #{ <<"reason">> => <<"breakp9oint">>
, <<"threadId">> => ThreadId
})
end,
Expand Down Expand Up @@ -726,7 +726,7 @@ ensure_connected(Node, Timeout) ->
true -> ok;
false ->
% connect and monitore project node
case els_distribution_server:wait_connect_and_monitor(Node, Timeout, hidden) of
case els_distribution_server:wait_connect_and_monitor(Node, Timeout) of
ok -> inject_dap_agent(Node);
_ -> stop_debugger()
end
Expand Down

0 comments on commit 7f23b2f

Please sign in to comment.