Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test: try a higher timeout
  • Loading branch information
chingor13 committed Aug 31, 2019
commit 9f8749a85370bd193b5561ed0184afcac7c78a0b
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public void testConnectTimeout() {
HttpTransport httpTransport = new ApacheHttpTransport();
GenericUrl url = new GenericUrl("http://google.com:81");
try {
httpTransport.createRequestFactory().buildGetRequest(url).setConnectTimeout(5).execute();
httpTransport.createRequestFactory().buildGetRequest(url).setConnectTimeout(100).execute();
fail("should have thrown an exception");
} catch (HttpHostConnectException expected) {
// expected
Expand Down