diff options
Diffstat (limited to 'server/models')
-rw-r--r-- | server/models/job.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/models/job.js b/server/models/job.js index eeb50e16d..949f88d44 100644 --- a/server/models/job.js +++ b/server/models/job.js | |||
@@ -39,14 +39,14 @@ module.exports = function (sequelize, DataTypes) { | |||
39 | 39 | ||
40 | // --------------------------------------------------------------------------- | 40 | // --------------------------------------------------------------------------- |
41 | 41 | ||
42 | function listWithLimit (limit, callback) { | 42 | function listWithLimit (limit, state, callback) { |
43 | const query = { | 43 | const query = { |
44 | order: [ | 44 | order: [ |
45 | [ 'id', 'ASC' ] | 45 | [ 'id', 'ASC' ] |
46 | ], | 46 | ], |
47 | limit: limit, | 47 | limit: limit, |
48 | where: { | 48 | where: { |
49 | state: constants.JOB_STATES.PENDING | 49 | state |
50 | } | 50 | } |
51 | } | 51 | } |
52 | 52 | ||