aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/src/ssh_system_sup.erl
diff options
context:
space:
mode:
authorHans Nilsson <[email protected]>2018-02-22 12:11:05 +0100
committerHans Nilsson <[email protected]>2018-02-22 12:11:05 +0100
commit398dcda0815f12fb177bbb3bf68f6b424c2a62f2 (patch)
tree28cdd37f4c77fae6e7999507b07485fbd2e04cbb /lib/ssh/src/ssh_system_sup.erl
parent4a319977e7f8578435a97e700bebf65b3ee49992 (diff)
parent13c6a4bf01d39a5002e09ef1f82619cde9f2c90c (diff)
downloadotp-398dcda0815f12fb177bbb3bf68f6b424c2a62f2.tar.gz
otp-398dcda0815f12fb177bbb3bf68f6b424c2a62f2.tar.bz2
otp-398dcda0815f12fb177bbb3bf68f6b424c2a62f2.zip
Merge branch 'maint-20' into maint
* maint-20: Updated OTP version Prepare release ssh: Add option save_accepted_host ssh: No error message for signal kill ssh: Dont repeat supervisor defaults in map fields ssh: Move starting of channel child to ssh_channel_sup ssh: Test case for sup tree when shell server proc times out
Diffstat (limited to 'lib/ssh/src/ssh_system_sup.erl')
-rw-r--r--lib/ssh/src/ssh_system_sup.erl9
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/ssh/src/ssh_system_sup.erl b/lib/ssh/src/ssh_system_sup.erl
index e70abf59c2..17f990c5d8 100644
--- a/lib/ssh/src/ssh_system_sup.erl
+++ b/lib/ssh/src/ssh_system_sup.erl
@@ -63,9 +63,7 @@ init([Address, Port, Profile, Options]) ->
[#{id => id(ssh_acceptor_sup, Address, Port, Profile),
start => {ssh_acceptor_sup, start_link, [Address, Port, Profile, Options]},
restart => transient,
- shutdown => infinity,
- type => supervisor,
- modules => [ssh_acceptor_sup]
+ type => supervisor
}];
_ ->
[]
@@ -124,9 +122,8 @@ start_subsystem(SystemSup, Role, Address, Port, Profile, Options) ->
#{id => make_ref(),
start => {ssh_subsystem_sup, start_link, [Role, Address, Port, Profile, Options]},
restart => temporary,
- shutdown => infinity,
- type => supervisor,
- modules => [ssh_subsystem_sup]},
+ type => supervisor
+ },
supervisor:start_child(SystemSup, SubsystemSpec).
stop_subsystem(SystemSup, SubSys) ->