Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
qq254963746 committed Apr 15, 2016
1 parent d90fb09 commit 35d8d3f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public boolean updateLastGenerateTriggerTime(String jobId, Long lastGenerateTrig
@Override
public List<JobPo> getNeedGenerateJobPos(Long checkTime, int topSize) {
Query<JobPo> query = template.createQuery(JobPo.class);
query.field("relyOnPrevCycle").equal(true);
query.field("relyOnPrevCycle").equal(false);
query.field("lastGenerateTriggerTime").equal(checkTime);
query.offset(0).limit(topSize);
return query.asList();
Expand Down

0 comments on commit 35d8d3f

Please sign in to comment.