From 9c772f0305a7d25faa5a19eca31d55277745a5da Mon Sep 17 00:00:00 2001 From: Freek Van der Herten Date: Tue, 23 Jan 2024 19:41:44 +0100 Subject: [PATCH] disable docs sync --- app/Console/Kernel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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');