diff options
author | Ingela Anderton Andin <[email protected]> | 2013-09-11 12:04:36 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2014-02-05 10:32:24 +0100 |
commit | f97cd6965ac35d1cbe510de23592956857d144c8 (patch) | |
tree | c1ad0c9fa21a7acb69190bd1de999cba9001e7da /lib/inets/test/httpc_SUITE.erl | |
parent | 55d5420de8a4b765cc32dfbe839ac7134f8f0e22 (diff) | |
download | otp-f97cd6965ac35d1cbe510de23592956857d144c8.tar.gz otp-f97cd6965ac35d1cbe510de23592956857d144c8.tar.bz2 otp-f97cd6965ac35d1cbe510de23592956857d144c8.zip |
inets: httpc improve pipelining
Diffstat (limited to 'lib/inets/test/httpc_SUITE.erl')
-rw-r--r-- | lib/inets/test/httpc_SUITE.erl | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/inets/test/httpc_SUITE.erl b/lib/inets/test/httpc_SUITE.erl index bf993c2705..299c429d5e 100644 --- a/lib/inets/test/httpc_SUITE.erl +++ b/lib/inets/test/httpc_SUITE.erl @@ -277,9 +277,6 @@ trace(Config) when is_list(Config) -> pipeline(Config) when is_list(Config) -> Request = {url(group_name(Config), "/dummy.html", Config), []}, {ok, _} = httpc:request(get, Request, [], [], pipeline), - - %% Make sure pipeline session is registerd - test_server:sleep(4000), keep_alive_requests(Request, pipeline). %%-------------------------------------------------------------------- @@ -287,9 +284,6 @@ pipeline(Config) when is_list(Config) -> persistent_connection(Config) when is_list(Config) -> Request = {url(group_name(Config), "/dummy.html", Config), []}, {ok, _} = httpc:request(get, Request, [], [], persistent), - - %% Make sure pipeline session is registerd - test_server:sleep(4000), keep_alive_requests(Request, persistent). %%------------------------------------------------------------------------- |