This is an automated email from the ASF dual-hosted git repository.
kerwin pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
The following commit(s) were added to refs/heads/dev by this push:
new 7333348 fix this issue (#8273)
7333348 is described below
commit 73333486321adc76fdb0436cf54570c034b42e07
Author: calvin <[email protected]>
AuthorDate: Mon Jan 31 17:41:48 2022 +0800
fix this issue (#8273)
---
.../org/apache/dolphinscheduler/dao/mapper/TaskGroupQueueMapper.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/TaskGroupQueueMapper.xml
b/dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/TaskGroupQueueMapper.xml
index 0d4a6be..f7d6abd 100644
---
a/dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/TaskGroupQueueMapper.xml
+++
b/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>