diff --git a/app/Jobs/Commands/MiningTaxes/FetchMiningTaxesObservers.php b/app/Jobs/Commands/MiningTaxes/FetchMiningTaxesObservers.php index 686f318ba..328991111 100644 --- a/app/Jobs/Commands/MiningTaxes/FetchMiningTaxesObservers.php +++ b/app/Jobs/Commands/MiningTaxes/FetchMiningTaxesObservers.php @@ -110,9 +110,6 @@ class FetchMiningTaxesObservers implements ShouldQueue $date = Carbon::now()->subDays(7); Observer::where('last_updated', '<', $date)->delete(); - //Set the task as completed - $task->SetStopStatus(); - //Set the end time for debugging and printint out to the screen $endTime = time(); printf("Time to complete: " . ($endTime - $startTime) . "\n\r"); diff --git a/app/Jobs/Commands/MiningTaxes/SendMiningTaxesInvoicesOld.php b/app/Jobs/Commands/MiningTaxes/SendMiningTaxesInvoicesOld.php index 7a631ee35..f20b9506f 100644 --- a/app/Jobs/Commands/MiningTaxes/SendMiningTaxesInvoicesOld.php +++ b/app/Jobs/Commands/MiningTaxes/SendMiningTaxesInvoicesOld.php @@ -70,8 +70,6 @@ class SendMiningTaxesInvoicesOld implements ShouldQueue ->pluck('character_id'); if($charIds == null) { - //Set the task status as done and Log the issue - $task->SetStopStatus(); Log::warning("No characters found to send invoices to in MiningTaxesInvoices Command."); return 0; }