Skip to content

Commit

Permalink
This fixes compatibility issues with R14B04
Browse files Browse the repository at this point in the history
Erlang releases dating R14B04 and earlier have a weird
crash occuring in the dispcount_sup where 'infinity' isn't
a valid shutdown delay.

This branch enables to be compatible with R14, and also adds a
rebar version using that version of the libraries.
  • Loading branch information
ferd committed Feb 20, 2012
1 parent 630d6f9 commit c7aca01
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified rebar
Binary file not shown.
2 changes: 1 addition & 1 deletion src/dispcount_sup.erl
Expand Up @@ -13,5 +13,5 @@ init({Name,Mod,InitOpts}) ->
% permanent, infinity, supervisor, [dispcount_sup]},
{info_server,
{dispcount_serv, start_link, [self(), Name, Mod, InitOpts]},
permanent, infinity, worker, [dispcount_serv]}
permanent, 120000, worker, [dispcount_serv]}
]}}.

0 comments on commit c7aca01

Please sign in to comment.