Skip to content

Commit 0314e06

Browse files
committed
[FLINK-38369][runtime] Fix flaky RestClientTest
1 parent a644a82 commit 0314e06

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

flink-runtime/src/test/java/org/apache/flink/runtime/rest/RestClientTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ class RestClientTest {
7777
private static final TestExecutorExtension<ScheduledExecutorService> EXECUTOR_EXTENSION =
7878
TestingUtils.defaultExecutorExtension();
7979

80-
private static final String unroutableIp = "240.0.0.0";
80+
// Part of TEST-NET-1 block described in RFC 5737 that should never be routed.
81+
private static final String unroutableIp = "192.0.2.1";
8182

8283
private static final long TIMEOUT = 10L;
8384

0 commit comments

Comments
 (0)