Skip to content

Commit

Permalink
Merge pull request #757 from LKaemmerling/patch-1
Browse files Browse the repository at this point in the history
Fix wrong value for failedJobs periods
  • Loading branch information
themsaid authored Feb 6, 2020
2 parents c9b5f03 + 6e32b62 commit 20f4a57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/Controllers/DashboardStatsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function index()
'status' => $this->currentStatus(),
'wait' => collect(app(WaitTimeCalculator::class)->calculate())->take(1),
'periods' => [
'failedJobs' => config('horizon.trim.recent_failed', config('horizon.trim.recent')),
'failedJobs' => config('horizon.trim.recent_failed', config('horizon.trim.failed')),
'recentJobs' => config('horizon.trim.recent'),
],
];
Expand Down

0 comments on commit 20f4a57

Please sign in to comment.