Skip to content

Commit 6061372

Browse files
committed
[hotfix] Fix error from cherry-picking 0ea00ea
1 parent 0ea00ea commit 6061372

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flink-fs-tests/src/test/java/org/apache/flink/hdfstests/DistributedCacheDfsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public void testSubmittingJobViaRestClusterClient() throws Exception {
143143

144144
final JobResult jobResult = restClusterClient
145145
.submitJob(jobGraph)
146-
.thenCompose(restClusterClient::requestJobResult)
146+
.thenCompose((submissionRes) -> restClusterClient.requestJobResult(submissionRes.getJobID()))
147147
.get();
148148

149149
final String messageInCaseOfFailure = jobResult.getSerializedThrowable().isPresent() ?

0 commit comments

Comments
 (0)