Skip to content

Commit 5a24a4b

Browse files
authored
[Fix][Server] Fix job page updater error (#549)
1 parent 0dce487 commit 5a24a4b

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

datavines-server/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -443,6 +443,14 @@
443443
<artifactId>slf4j-reload4j</artifactId>
444444
<groupId>org.slf4j</groupId>
445445
</exclusion>
446+
<exclusion>
447+
<artifactId>javax.servlet</artifactId>
448+
<groupId>org.eclipse.jetty.orbit</groupId>
449+
</exclusion>
450+
<exclusion>
451+
<artifactId>servlet-api-2.5</artifactId>
452+
<groupId>org.mortbay.jetty</groupId>
453+
</exclusion>
446454
</exclusions>
447455
</dependency>
448456

datavines-server/src/main/resources/mapper/JobMapper.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
<select id="getJobPageSelect" resultType="io.datavines.server.api.dto.vo.JobVO">
4040
select p.id, p.name, p.schema_name ,p.table_name,p.column_name, p.type, u.username as updater, p.update_time, s.cron_expression
41-
from (<include refid="basic_sql"/>) p left join `dv_user` u on u.id = p.create_by
41+
from (<include refid="basic_sql"/>) p left join `dv_user` u on u.id = p.update_by
4242
left join `dv_job_schedule` s on p.id = s.job_id and s.status = 1
4343
<where>
4444
<if test="searchVal != null and searchVal != ''">

0 commit comments

Comments
 (0)