Skip to content

Commit

Permalink
fix(controller): evaluation counts include all of jobs (#1069)
Browse files Browse the repository at this point in the history
fix: evaluation counts include all of jobs
  • Loading branch information
dreamlandliu authored Aug 31, 2022
1 parent b6161fc commit deb089b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
(select count(*) as count_member, project_id from user_role_rel group by project_id) as c3
on p.id = c3.project_id
left join
(select count(*) as count_jobs, project_id from job_info where job_status = 'SUCCESS' group by project_id) as c4
(select count(*) as count_jobs, project_id from job_info group by project_id) as c4
on p.id = c4.project_id
<if test="projectIds != null">
where p.id in
Expand Down

0 comments on commit deb089b

Please sign in to comment.