()
| 394 | } |
| 395 | |
| 396 | getInProgressJobId() { |
| 397 | for (let id in this.jobs) { |
| 398 | if (this.jobs[id].status === 'In Progress') { |
| 399 | return id; |
| 400 | } |
| 401 | } |
| 402 | return null; |
| 403 | } |
| 404 | |
| 405 | async startNextJob() { |
| 406 | logger.info('Looking for next job to start'); |
no outgoing calls
no test coverage detected