fix(任务中心): 系统即时任务列表-重跑计划组-停止主任务-执行状态和操作未更新

--bug=1050388 --user=王旭 【任务中心】系统即时任务列表-重跑计划组-停止主任务-执行状态和操作未更新 https://www.tapd.cn/55049933/s/1630435
This commit is contained in:
WangXu10 2024-12-13 16:33:46 +08:00 committed by 刘瑞斌
parent da688552cf
commit 7589a67719
1 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@
<where>
deleted = false
<if test="flag">
and status = 'RUNNING'
and status in ('RUNNING', 'RERUNNING')
</if>
<if test="projectId != null and projectId != ''">
and exec_task.project_id = #{projectId}
@ -126,7 +126,7 @@
<if test="organizationId != null and organizationId != ''">
and organization_id = #{organizationId}
</if>
and `status` = 'RUNNING'
and `status` in ('RUNNING', 'RERUNNING')
and deleted = false
</update>