Skip to content

Commit 7f544e3

Browse files
author
dapeng
committed
Merge branch 'feat_1.8_asyncException_mergeTest' into 1.8_release_3.10.x_mergedTest_new
2 parents fa12392 + 0d7fbad commit 7f544e3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,8 @@ protected void preInvoke(CRow input, ResultFuture<CRow> resultFuture){
161161
}
162162

163163
@Override
164-
public void asyncInvoke(CRow input, ResultFuture<CRow> resultFuture) throws Exception {
164+
public void asyncInvoke(CRow row, ResultFuture<CRow> resultFuture) throws Exception {
165+
CRow input = new CRow(Row.copy(row.row()), row.change());
165166
preInvoke(input, resultFuture);
166167
Map<String, Object> inputParams = parseInputParam(input);
167168
if(MapUtils.isEmpty(inputParams)){

0 commit comments

Comments
 (0)