Skip to content

Commit 48dd0c0

Browse files
author
dapeng
committed
fix completeExceptionally desc
1 parent 698094e commit 48dd0c0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,8 @@ public void timeout(Row input, ResultFuture<Row> resultFuture) throws Exception
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
}
134-
135134
}
136135

137136

0 commit comments

Comments
 (0)