diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 0c5d3fc3..a242709e 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -36,7 +36,7 @@ protected function schedule(Schedule $schedule): void $schedule->command('model:prune', ['--model' => MonitoredScheduledTaskLogItem::class])->weekly(); $schedule->command(SendLicenseExpirationNotificationsCommand::class)->dailyAt('10:00'); $schedule->command(RevokeRepositoryAccessForExpiredLicensesCommand::class)->dailyAt('04:00'); - $schedule->command(ImportDocsFromRepositoriesCommand::class)->graceTimeInMinutes(20)->runInBackground(); + //$schedule->command(ImportDocsFromRepositoriesCommand::class)->graceTimeInMinutes(20)->runInBackground(); $schedule->job(RandomizeAdsOnGitHubRepositoriesJob::class)->weekly(); $schedule->command(UpdateConversionRatesCommand::class)->runInBackground()->sundays()->at('05:00'); $schedule->command(UpdatePurchasablePricesCommand::class)->runInBackground()->sundays()->at('06:00');