aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/src/ct_slave.erl
diff options
context:
space:
mode:
authorAndrey Pampukha <[email protected]>2010-04-13 09:11:59 +0200
committerRaimo Niskanen <[email protected]>2010-06-09 16:19:18 +0200
commit2daac36809c14007d179a118784f48ceb79a30d1 (patch)
treee357965e790cc88a5a8c4dc8d12e5e2cff31a96d /lib/common_test/src/ct_slave.erl
parent05f69de43fc8f95baab30e940cd80df86a433e1e (diff)
downloadotp-2daac36809c14007d179a118784f48ceb79a30d1.tar.gz
otp-2daac36809c14007d179a118784f48ceb79a30d1.tar.bz2
otp-2daac36809c14007d179a118784f48ceb79a30d1.zip
Change monitor_master option to false by default
Diffstat (limited to 'lib/common_test/src/ct_slave.erl')
-rw-r--r--lib/common_test/src/ct_slave.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/common_test/src/ct_slave.erl b/lib/common_test/src/ct_slave.erl
index 09d8820731..476815895c 100644
--- a/lib/common_test/src/ct_slave.erl
+++ b/lib/common_test/src/ct_slave.erl
@@ -134,7 +134,7 @@ start(Host, Node)->
%%% </list></p>
%%%
%%% <p>Option <code>monitor_master</code> specifies, if the slave node should be
-%%% stopped in case of master node stop. Defaults to true.</p>
+%%% stopped in case of master node stop. Defaults to false.</p>
%%%
%%% <p>Option <code>kill_if_fail</code> specifies, if the slave node should be
%%% killed in case of a timeout during initialization or startup.
@@ -222,7 +222,7 @@ fetch_options(Options)->
InitTimeout = get_option_value(init_timeout, Options, 1),
StartupTimeout = get_option_value(startup_timeout, Options, 1),
StartupFunctions = get_option_value(startup_functions, Options, []),
- Monitor = get_option_value(monitor_master, Options, true),
+ Monitor = get_option_value(monitor_master, Options, false),
KillIfFail = get_option_value(kill_if_fail, Options, true),
ErlFlags = get_option_value(erl_flags, Options, []),
#options{username=UserName, password=Password,