Skip to content

Commit 1248591

Browse files
author
dapeng
committed
fix completeExceptionally desc
1 parent f3c63c1 commit 1248591

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/com/dtstack/flink/sql/side/AsyncReqRow.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public void timeout(CRow input, ResultFuture<CRow> resultFuture) throws Exceptio
129129

130130
timeOutNum ++;
131131
if(timeOutNum > sideInfo.getSideTableInfo().getAsyncTimeoutNumLimit()){
132-
resultFuture.complete(null);
132+
resultFuture.completeExceptionally(new Exception("Async function call timedoutNum beyond limit."));
133133
}
134134
}
135135

0 commit comments

Comments
 (0)