Browse Source

fix this issue (#8273)

3.0.0/version-upgrade
calvin 2 years ago committed by GitHub
parent
commit
7333348632
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/TaskGroupQueueMapper.xml

4
dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/TaskGroupQueueMapper.xml

@ -79,13 +79,13 @@
<update id="updateForceStart">
update t_ds_task_group_queue
set priority = #{priority}
set force_start = #{forceStart}
where id = #{queueId}
</update>
<update id="modifyPriority">
update t_ds_task_group_queue
set force_start = #{forceStart}
set priority = #{priority}
where id = #{queueId}
</update>

Loading…
Cancel
Save