diff options
author | Anders Svensson <[email protected]> | 2015-02-09 00:36:56 +0100 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2015-02-20 02:26:53 +0100 |
commit | e6d19a18b7c1057c2b4493f8db822c82bb0dbe0d (patch) | |
tree | 41d01dded073f8c7722b96166e7a8a9de11f3d0f /lib/diameter/src/base/diameter_watchdog.erl | |
parent | 5f6399fb9f5d1552bb0050b18e1c9a9085d8b5db (diff) | |
download | otp-e6d19a18b7c1057c2b4493f8db822c82bb0dbe0d.tar.gz otp-e6d19a18b7c1057c2b4493f8db822c82bb0dbe0d.tar.bz2 otp-e6d19a18b7c1057c2b4493f8db822c82bb0dbe0d.zip |
Use new time api in implementation
In particular, deal with the deprecation of erlang:now/0 in OTP 18. Be
backwards compatible with older releases: the new api is only used when
available.
The test suites have not been modified.
Diffstat (limited to 'lib/diameter/src/base/diameter_watchdog.erl')
-rw-r--r-- | lib/diameter/src/base/diameter_watchdog.erl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/diameter/src/base/diameter_watchdog.erl b/lib/diameter/src/base/diameter_watchdog.erl index b7f2d24941..67715906e8 100644 --- a/lib/diameter/src/base/diameter_watchdog.erl +++ b/lib/diameter/src/base/diameter_watchdog.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2010-2014. All Rights Reserved. +%% Copyright Ericsson AB 2010-2015. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -122,7 +122,8 @@ i({Ack, T, Pid, {RecvData, = Svc}}) -> erlang:monitor(process, Pid), wait(Ack, Pid), - random:seed(now()), + {_, Seed} = diameter_lib:seed(), + random:seed(Seed), putr(restart, {T, Opts, Svc}), %% save seeing it in trace putr(dwr, dwr(Caps)), %% {_,_} = Mask = proplists:get_value(sequence, SvcOpts), |