diff options
author | Siri Hansen <[email protected]> | 2016-02-10 11:10:18 +0100 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2016-02-10 11:13:35 +0100 |
commit | 8fba155bdc0b45f0504756d1ea695d9c53a44f80 (patch) | |
tree | 20743b3da8707882935c995c77e05b2da9ed7c29 /lib/sasl/test/release_handler_SUITE.erl | |
parent | 439292ad4afe73243852fe79d5d467c325f382bf (diff) | |
parent | 264a5e804d6e23bf6c6916887669760cbf243caa (diff) | |
download | otp-8fba155bdc0b45f0504756d1ea695d9c53a44f80.tar.gz otp-8fba155bdc0b45f0504756d1ea695d9c53a44f80.tar.bz2 otp-8fba155bdc0b45f0504756d1ea695d9c53a44f80.zip |
Merge branch 'nybek/speed_up_supervisor_count_children' into maint
* nybek/speed_up_supervisor_count_children:
Speed up supervisor:count_children/1; simple_one_for_one
Add supervisor:get_callback_module/1
OTP-13290
Diffstat (limited to 'lib/sasl/test/release_handler_SUITE.erl')
-rw-r--r-- | lib/sasl/test/release_handler_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sasl/test/release_handler_SUITE.erl b/lib/sasl/test/release_handler_SUITE.erl index d57de2593a..ee620dcdb4 100644 --- a/lib/sasl/test/release_handler_SUITE.erl +++ b/lib/sasl/test/release_handler_SUITE.erl @@ -1363,7 +1363,7 @@ upgrade_supervisor(Conf) when is_list(Conf) -> %% Check that the restart strategy and child spec is updated {status, _, {module, _}, [_, _, _, _, [_,_,{data,[{"State",State}]}]]} = rpc:call(Node,sys,get_status,[a_sup]), - {state,_,RestartStrategy,[Child],_,_,_,_,_,_} = State, + {state,_,RestartStrategy,[Child],_,_,_,_,_,_,_} = State, one_for_all = RestartStrategy, % changed from one_for_one {child,_,_,_,_,brutal_kill,_,_} = Child, % changed from timeout 2000 |