Skip to content

Commit

Permalink
assert on ok stattus
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszsamson committed Sep 8, 2023
1 parent 342914f commit 09f666d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/elixir_ls_debugger/lib/debugger/server.ex
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ defmodule ElixirLS.Debugger.Server do

@impl GenServer
def init(opts) do
BreakpointCondition.start_link([])
ModuleInfoCache.start_link(%{})
{:ok, _} = BreakpointCondition.start_link([])
{:ok, _} = ModuleInfoCache.start_link(%{})
state = if opts[:output], do: %__MODULE__{output: opts[:output]}, else: %__MODULE__{}
{:ok, state}
end
Expand Down

0 comments on commit 09f666d

Please sign in to comment.