Ignore unexpected events

This commit is contained in:
Evgeniy Khramtsov 2017-01-11 16:50:11 +03:00
parent 02f96d0f41
commit b10e10efae
1 changed files with 3 additions and 1 deletions

View File

@ -158,7 +158,9 @@ handle_event({'DOWN', _Ref, _Type, Pid, _Info}) ->
end
end, Es)
end,
transaction(F).
transaction(F);
handle_event(_Event) ->
ok.
%%%===================================================================
%%% Internal functions