Skip to content

Commit

Permalink
fix logic error
Browse files Browse the repository at this point in the history
  • Loading branch information
nicochen committed Sep 15, 2023
1 parent 73ce73e commit 888db83
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ List<TableTaskHistory> selectTaskHistory(@Param("tableIdentifier") TableIdentifi
"typeHandler=com.netease.arctic.ams.server.mybatis.Long2TsConvertor}, " +
"cost_time = #{taskHistory.costTime}, " +
"fail_reason = #{taskHistory.failReason}, " +
"fail_time = #{taskHistory.failTime}, " +
"fail_time = #{taskHistory.failTime} " +
"where " +
"task_trace_id = #{taskHistory.taskTraceId} and retry = #{taskHistory.retry}")
void updateTaskHistory(@Param("taskHistory") TableTaskHistory taskHistory);
Expand Down

0 comments on commit 888db83

Please sign in to comment.