Skip to content

Commit 724d172

Browse files
committed
increase timeout
1 parent 4b36637 commit 724d172

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
@@ -1188,7 +1188,7 @@ defmodule ElixirLS.Debugger.Server do
11881188
GenServer.call(
11891189
__MODULE__,
11901190
{:get_variable_reference, child_type, :evaluator, value},
1191-
30_000
1191+
60_000
11921192
)
11931193

11941194
%{
@@ -1408,7 +1408,7 @@ defmodule ElixirLS.Debugger.Server do
14081408
|> Enum.reduce([], fn {name, value}, acc ->
14091409
child_type = Variables.child_type(value)
14101410

1411-
case GenServer.call(__MODULE__, {:get_variable_reference, child_type, pid, value}, 30_000) do
1411+
case GenServer.call(__MODULE__, {:get_variable_reference, child_type, pid, value}, 60_000) do
14121412
{:ok, var_id} ->
14131413
json =
14141414
%{

0 commit comments

Comments
 (0)