diff options
author | Anders Svensson <[email protected]> | 2015-01-19 13:36:12 +0100 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2015-01-19 14:18:44 +0100 |
commit | f21490c2fbaa1b501d2f6d7b766c88b23acc955a (patch) | |
tree | ab0fda1dd579e64a040181550a36a5f2ce43a4a8 /lib/diameter/src/base | |
parent | 65153795869eda29ccd1bb0d3b5c14e390681f4f (diff) | |
download | otp-f21490c2fbaa1b501d2f6d7b766c88b23acc955a.tar.gz otp-f21490c2fbaa1b501d2f6d7b766c88b23acc955a.tar.bz2 otp-f21490c2fbaa1b501d2f6d7b766c88b23acc955a.zip |
Set shutdown = infinity for supervisor children
As suggested in supervisor(3). The leaves of the supervision tree should
determine the timeouts.
Diffstat (limited to 'lib/diameter/src/base')
-rw-r--r-- | lib/diameter/src/base/diameter_sup.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/diameter/src/base/diameter_sup.erl b/lib/diameter/src/base/diameter_sup.erl index e5afd23dcd..4ede4086d8 100644 --- a/lib/diameter/src/base/diameter_sup.erl +++ b/lib/diameter/src/base/diameter_sup.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2010-2011. 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 @@ -64,7 +64,7 @@ spec(Mod) -> {Mod, {Mod, start_link, []}, permanent, - 1000, + infinity, supervisor, [Mod]}. |