Skip to content

Commit

Permalink
#686 | Filter out jobs with null start_time when looking at last job …
Browse files Browse the repository at this point in the history
…status for subject type
  • Loading branch information
1t5j0y committed Feb 13, 2024
1 parent 3cc97a3 commit 7dda432
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ public String getLastJobStatusForSubjectType(SubjectType subjectType) {
"where i.job_name = 'syncAttributesJob'\n" +
" and key_name = 'subjectTypeId'\n" +
" and long_val = :subjectTypeId\n" +
" and start_time is not null\n" +
"order by start_time desc\n" +
"limit 1;";
Map<String, Object> params = new HashMap<>();
Expand Down

0 comments on commit 7dda432

Please sign in to comment.