Skip to content

Commit 09f666d

Browse files
committed
assert on ok stattus
1 parent 342914f commit 09f666d

File tree

1 file changed

+2
-2
lines changed
  • apps/elixir_ls_debugger/lib/debugger

1 file changed

+2
-2
lines changed

apps/elixir_ls_debugger/lib/debugger/server.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@ defmodule ElixirLS.Debugger.Server do
176176

177177
@impl GenServer
178178
def init(opts) do
179-
BreakpointCondition.start_link([])
180-
ModuleInfoCache.start_link(%{})
179+
{:ok, _} = BreakpointCondition.start_link([])
180+
{:ok, _} = ModuleInfoCache.start_link(%{})
181181
state = if opts[:output], do: %__MODULE__{output: opts[:output]}, else: %__MODULE__{}
182182
{:ok, state}
183183
end

0 commit comments

Comments
 (0)