Browse Source

The task instance list is sorted by submission time (#12974)

Kerwin 2 years ago
parent
commit
31021730ec

+ 1 - 1
dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/TaskInstanceMapper.xml

@@ -217,7 +217,7 @@
         <if test="processInstanceName != null and processInstanceName != ''">
             and process.name like concat('%', #{processInstanceName}, '%')
         </if>
-        order by instance.start_time desc
+        order by instance.submit_time desc
     </select>
     <select id="queryStreamTaskInstanceListPaging" resultType="org.apache.dolphinscheduler.dao.entity.TaskInstance">
         select