diff --git a/batch/job_queue.js b/batch/job_queue.js index 4b38f504..7f373ac3 100644 --- a/batch/job_queue.js +++ b/batch/job_queue.js @@ -2,10 +2,9 @@ var debug = require('./util/debug')('queue'); -function JobQueue(metadataBackend, jobPublisher, queueIndex) { +function JobQueue(metadataBackend, jobPublisher) { this.metadataBackend = metadataBackend; this.jobPublisher = jobPublisher; - this.queueIndex = queueIndex; } module.exports = JobQueue;