aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/src/ct_netconfc.erl
diff options
context:
space:
mode:
authorPeter Andersson <[email protected]>2013-06-04 16:10:09 +0200
committerPeter Andersson <[email protected]>2013-06-04 16:13:40 +0200
commitcf68fec61294194b47063d2368ff916964e8644d (patch)
tree9501c9abe4a2fa3715ff58210815356f829ac390 /lib/common_test/src/ct_netconfc.erl
parentf7f24a77e918eea712b435a5ae9b01de270d6d7d (diff)
parenta1cc5adde3b289282dd5bfc7592a044d988c75a9 (diff)
downloadotp-cf68fec61294194b47063d2368ff916964e8644d.tar.gz
otp-cf68fec61294194b47063d2368ff916964e8644d.tar.bz2
otp-cf68fec61294194b47063d2368ff916964e8644d.zip
Merge remote branch 'origin/peppe/common_test/ct_conn_handling' into maint
* origin/peppe/common_test/ct_conn_handling: Add test suite Fix faulty connection handling OTP-10126
Diffstat (limited to 'lib/common_test/src/ct_netconfc.erl')
-rw-r--r--lib/common_test/src/ct_netconfc.erl8
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/common_test/src/ct_netconfc.erl b/lib/common_test/src/ct_netconfc.erl
index 28586c310e..e094ee877a 100644
--- a/lib/common_test/src/ct_netconfc.erl
+++ b/lib/common_test/src/ct_netconfc.erl
@@ -1164,13 +1164,11 @@ call(Client, Msg, Timeout, WaitStop) ->
get_handle(Client) when is_pid(Client) ->
{ok,Client};
get_handle(Client) ->
- case ct_util:get_connections(Client, ?MODULE) of
- {ok,[{Pid,_}]} ->
+ case ct_util:get_connection(Client, ?MODULE) of
+ {ok,{Pid,_}} ->
{ok,Pid};
- {ok,[]} ->
+ {error,no_registered_connection} ->
{error,{no_connection_found,Client}};
- {ok,Conns} ->
- {error,{multiple_connections_found,Client,Conns}};
Error ->
Error
end.