aboutsummaryrefslogtreecommitdiffstats
path: root/lib/diameter/src/base/diameter_peer.erl
diff options
context:
space:
mode:
authorAnders Svensson <[email protected]>2013-03-18 19:29:23 +0100
committerAnders Svensson <[email protected]>2013-03-18 19:29:23 +0100
commit4ac5deb44293aa78ee53dae0e190733442a2c6c6 (patch)
tree41296110ca32aef3c20291efa4d16c9dd9e1b9d3 /lib/diameter/src/base/diameter_peer.erl
parent887577cfaeee55461f1e8f7b4f9472cbca1d2a2e (diff)
parentecebd37eb5e874e307812373c072f685455a2eee (diff)
downloadotp-4ac5deb44293aa78ee53dae0e190733442a2c6c6.tar.gz
otp-4ac5deb44293aa78ee53dae0e190733442a2c6c6.tar.bz2
otp-4ac5deb44293aa78ee53dae0e190733442a2c6c6.zip
Merge branch 'anders/diameter/distribution/OTP-9610' into maint
* anders/diameter/distribution/OTP-9610: Specify timeouts to ct_slave:start/2 More flexible distribution config Add distribution suite Document distribution config Distribution fixes
Diffstat (limited to 'lib/diameter/src/base/diameter_peer.erl')
-rw-r--r--lib/diameter/src/base/diameter_peer.erl8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/diameter/src/base/diameter_peer.erl b/lib/diameter/src/base/diameter_peer.erl
index 130bedda84..dfc76eb76e 100644
--- a/lib/diameter/src/base/diameter_peer.erl
+++ b/lib/diameter/src/base/diameter_peer.erl
@@ -31,7 +31,7 @@
send/2,
close/1,
abort/1,
- notify/2]).
+ notify/3]).
%% Server start.
-export([start_link/0]).
@@ -63,11 +63,11 @@
-define(DEFAULT_TTMO, infinity).
%%% ---------------------------------------------------------------------------
-%%% # notify/2
+%%% # notify/3
%%% ---------------------------------------------------------------------------
-notify(SvcName, T) ->
- rpc:abcast(nodes(), ?SERVER, {notify, SvcName, T}).
+notify(Nodes, SvcName, T) ->
+ rpc:abcast(Nodes, ?SERVER, {notify, SvcName, T}).
%%% ---------------------------------------------------------------------------
%%% # start/1