Skip to content

Commit

Permalink
Use a smaller value in sysmon_filter tests that's 32 bit friendly
Browse files Browse the repository at this point in the history
  • Loading branch information
Vagabond committed Mar 30, 2011
1 parent 07fd9e5 commit 2c241f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/riak_sysmon_filter.erl
Expand Up @@ -313,8 +313,8 @@ limit_test() ->
application:set_env(riak_sysmon, process_limit, ProcLimit),
application:set_env(riak_sysmon, port_limit, PortLimit),
%% Use huge limits to avoid unexpected messages that could confuse us.
application:set_env(riak_sysmon, gc_ms_limit, 9999999999),
application:set_env(riak_sysmon, heap_word_limit, 9999999999),
application:set_env(riak_sysmon, gc_ms_limit, 999999999),
application:set_env(riak_sysmon, heap_word_limit, 999999999),
{ok, _FilterPid} = ?MODULE:start_link(),
?MODULE:stop_timer(),

Expand Down

0 comments on commit 2c241f5

Please sign in to comment.