Skip to content
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Jobs: verify jobs
Shows verify jobs in the job action tab listing as well.
  • Loading branch information
fbergkemper committed Mar 6, 2017
1 parent 999de1f commit 311ed22
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion module/Job/src/Job/Controller/JobController.php
Expand Up @@ -369,8 +369,9 @@ public function getDataAction()
$jobs_c = $this->getJobModel()->getJobsByType($this->bsock, 'c'); // Copy Job
$jobs_g = $this->getJobModel()->getJobsByType($this->bsock, 'g'); // Migration Job
$jobs_O = $this->getJobModel()->getJobsByType($this->bsock, 'O'); // Always Incremental Consolidate Job
$jobs_V = $this->getJobModel()->getJobsByType($this->bsock, 'V'); // Verify Job
$result = array_merge(
$jobs_B,$jobs_D,$jobs_A,$jobs_c,$jobs_g,$jobs_O
$jobs_B,$jobs_D,$jobs_A,$jobs_c,$jobs_g,$jobs_O,$jobs_V
);
}
catch(Exception $e) {
Expand Down

0 comments on commit 311ed22

Please sign in to comment.