Skip to content
This repository has been archived by the owner on Dec 11, 2020. It is now read-only.

Commit

Permalink
[s4u#34] Switch to Deterministic Timeout IP
Browse files Browse the repository at this point in the history
`example.com` has an IPv6 address that results in a "Network is unreachable" error on some systems. This new IP is unlikely to resolve on any network.
  • Loading branch information
Kortanul committed Jul 6, 2018
1 parent 1de7408 commit 897fc5e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ Object[][] goodServerUrls() {
Object[][] badServerUrls() {
return new Object[][]{
{
"https://example.com:81",
"org.apache.http.conn.ConnectTimeoutException: Connect to example.com:81 "
+ "[example.com/93.184.216.34] failed: connect timed out",
"https://10.255.255.1:65535",
"org.apache.http.conn.ConnectTimeoutException: Connect to 10.255.255.1:65535 "
+ "[/10.255.255.1] failed: connect timed out",
true // Should retry
},
{
Expand Down

0 comments on commit 897fc5e

Please sign in to comment.