Fix safe backfill $backfilldays variable. Closes #978

This commit is contained in:
DariusIII
2019-06-05 11:41:44 +02:00
parent 2d0ca87c46
commit 86504ba276
2 changed files with 2 additions and 2 deletions
+1 -2
View File
@@ -370,8 +370,7 @@ class Forking
$backfilldays = '';
if ($backfill_days === 1) {
$days = 'backfill_target';
$backfilldays = now()->diffInDays(Carbon::createFromDate($days));
$backfilldays = 'g.backfill_target';
} elseif ($backfill_days === 2) {
$backfilldays = now()->diffInDays(Carbon::createFromFormat('Y-m-d', Settings::settingValue('..safebackfilldate')));
}
+1
View File
@@ -1,4 +1,5 @@
2019-06-05 DariusIII
* Fix: Fix safe backfill $backfilldays variable. Closes #978
* Chg: Update laravel/framework, nesbot/carbon and laravel/horizon to latest versions
2019-06-04 DariusIII
* Chg: Update commit script to include composer fix-style command