This commit is contained in:
2021-04-19 19:43:22 +09:00
parent e92c9d304d
commit 87891ac059
2 changed files with 0 additions and 5 deletions

View File

@@ -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");

View File

@@ -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;
}