We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5248ef commit 390fa8eCopy full SHA for 390fa8e
apps/debug_adapter/lib/debug_adapter/server.ex
@@ -642,6 +642,12 @@ defmodule ElixirLS.DebugAdapter.Server do
642
{:noreply, state}
643
end
644
645
+ def handle_info({:ok, [%Frame{} | _]}, state = %__MODULE__{}) do
646
+ # timed out response from Stacktrace.get/1
647
+ # we already emitted a warning
648
+ {:noreply, state}
649
+ end
650
+
651
# If we get the disconnect request from the client, we continue with :disconnect so the server will
652
# die right after responding to the request
653
@impl GenServer
0 commit comments