diff options
author | Peter Andersson <[email protected]> | 2010-06-03 22:48:10 +0200 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2010-06-09 16:19:22 +0200 |
commit | 470063d25f6128ef83cba6864533fc05e45cca74 (patch) | |
tree | 25ce6cdf511d7ff435e60c208a5eb510f5720ff3 /lib/common_test/src/ct_master.erl | |
parent | 7ce6aa16313d159b1994bf1d2f18b52bd91e9075 (diff) | |
download | otp-470063d25f6128ef83cba6864533fc05e45cca74.tar.gz otp-470063d25f6128ef83cba6864533fc05e45cca74.tar.bz2 otp-470063d25f6128ef83cba6864533fc05e45cca74.zip |
Flush old DOWN messages in demonitor
Diffstat (limited to 'lib/common_test/src/ct_master.erl')
-rw-r--r-- | lib/common_test/src/ct_master.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common_test/src/ct_master.erl b/lib/common_test/src/ct_master.erl index 6cabe4c7a2..5c4ef70271 100644 --- a/lib/common_test/src/ct_master.erl +++ b/lib/common_test/src/ct_master.erl @@ -697,7 +697,7 @@ call(Pid,Msg) -> {'DOWN', Ref, _, _, _} -> {error,master_died} end, - erlang:demonitor(Ref), + erlang:demonitor(Ref, [flush]), Return. reply(Result,To) -> |