Skip to content

Commit 5583fbb

Browse files
LocutusOfBorgBillyONeal
authored andcommitted
Update request_timeout_microsecond timeout (#1101)
Occasionally, on heavy loaded servers, or slow machines, 500 micro seconds is a too strict timeout. Bump to 900 micro seconds instead
1 parent c328c70 commit 5583fbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Release/tests/functional/http/client/connections_and_errors.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ SUITE(connections_and_errors)
156156
test_http_server::scoped_server scoped(m_uri);
157157
t = scoped.server()->next_request();
158158
http_client_config config;
159-
config.set_timeout(std::chrono::microseconds(500));
159+
config.set_timeout(std::chrono::microseconds(900));
160160

161161
http_client client(m_uri, config);
162162
auto responseTask = client.request(methods::GET);

0 commit comments

Comments
 (0)