Skip to content

Commit 36e81d5

Browse files
author
José Valim
committed
Increase elixir_counter timeout
Signed-off-by: José Valim <[email protected]>
1 parent 17a0abd commit 36e81d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/elixir/src/elixir_counter.erl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
handle_info/2, terminate/2, code_change/3, next/0]).
44
-behaviour(gen_server).
55

6-
-define(timeout, 1000). %% 1 second
7-
-define(limit, 4294967296). %% 2^32
6+
-define(timeout, 30000). %% 30 seconds
7+
-define(limit, 4294967295). %% 2^32 - 1
88

99
next() ->
1010
gen_server:call(?MODULE, next, ?timeout).

0 commit comments

Comments
 (0)