Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ public class ApacheHttp2TransportIT {

// Sets a 5 second delay before server response to simulate a slow network that
// results in a read timeout.
private static final String DELAY_URL = "https://nghttp2.org/httpbin/delay/5";
private static final String GET_URL = "https://nghttp2.org/httpbin/get";
private static final String POST_URL = "https://nghttp2.org/httpbin/post";
private static final String DELAY_URL = "https://httpbin.org/delay/5";
private static final String GET_URL = "https://httpbin.org/get";
private static final String POST_URL = "https://httpbin.org/post";

private static ServerSocket serverSocket;
private static Socket fillerSocket;
Expand Down
Loading