Skip to content

Commit 7fc89a6

Browse files
committed
fix wrong call
Signed-off-by: Alejandro M. Ramallo <alejandro.ramallo@leapsight.com>
1 parent ef505f1 commit 7fc89a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/partisan_util.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ apply(Mod, Fun, Args, Default) ->
173173

174174
safe_apply(Mod, Fun, Args, Default) ->
175175
try
176-
safe_apply(Mod, Fun, Args, Default)
176+
apply(Mod, Fun, Args, Default)
177177
catch
178178
Class:Reason:Stacktrace ->
179179
Formatted = erl_error:format_exception(Class, Reason, Stacktrace),

0 commit comments

Comments
 (0)