]> granicus.if.org Git - ejabberd/commitdiff
Fix broken ejabberd_cluster:call/5
authorEvgeny Khramtsov <ekhramtsov@process-one.net>
Sat, 13 Jul 2019 07:34:59 +0000 (10:34 +0300)
committerEvgeny Khramtsov <ekhramtsov@process-one.net>
Sat, 13 Jul 2019 07:34:59 +0000 (10:34 +0300)
src/ejabberd_cluster.erl

index 920ecda121b8e9eb220700686ff651069ee3a857..d91f1fae099b91d31633aa534fa91709b3853652 100644 (file)
@@ -62,7 +62,7 @@ call(Node, Module, Function, Args) ->
 
 -spec call(node(), module(), atom(), [any()], timeout()) -> any().
 call(Node, Module, Function, Args, Timeout) ->
-    call(Node, Module, Function, Args, Timeout).
+    rpc:call(Node, Module, Function, Args, Timeout).
 
 -spec multicall(module(), atom(), [any()]) -> {list(), [node()]}.
 multicall(Module, Function, Args) ->