You've already forked FrameTour-BE
fix(task): 修复任务重复处理中的日志和更新逻辑
- 移除了创建任务日志中的敏感参数信息 - 更新重复任务日志以包含任务ID信息 - 移除了workerId重置逻辑,改为显式清除方法 - 修复TaskMapper中status字段的SQL语法问题 - 优化了任务参数更新的处理流程
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
<if test="scenicId!= null">scenic_id = #{scenicId}, </if>
|
||||
<if test="taskParams!= null">task_params = #{taskParams}, </if>
|
||||
<if test="videoUrl!= null">video_url = #{videoUrl}, </if>
|
||||
<if test="status!= null">status = #{status}, </if>
|
||||
<if test="status!= null">`status` = #{status}, </if>
|
||||
<if test="result!= null">result = #{result}, </if>
|
||||
</set>
|
||||
where id = #{id}
|
||||
|
||||
Reference in New Issue
Block a user