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_util.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_util.erl')
-rw-r--r-- | lib/common_test/src/ct_util.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common_test/src/ct_util.erl b/lib/common_test/src/ct_util.erl index 2b06338479..f1692caf24 100644 --- a/lib/common_test/src/ct_util.erl +++ b/lib/common_test/src/ct_util.erl @@ -679,7 +679,7 @@ call(Msg) -> ct_util_server ! {Msg,{self(),Ref}}, receive {Ref, Result} -> - erlang:demonitor(MRef), + erlang:demonitor(MRef, [flush]), Result; {'DOWN',MRef,process,_,Reason} -> {error,{ct_util_server_down,Reason}} |