Skip to content

Commit

Permalink
feat: update
Browse files Browse the repository at this point in the history
  • Loading branch information
ezralazuardy committed May 3, 2024
1 parent 1c1c42c commit 1e06fbf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Console/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ protected function schedule(Schedule $schedule): void
{
$schedule->command(DispatchQueueCheckJobsCommand::class)->everyMinute();

$schedule->command(RunHealthChecksCommand::class)->everyMinute();
$schedule->command(RunHealthChecksCommand::class)->everyHour();
}

/**
Expand Down
2 changes: 1 addition & 1 deletion app/Providers/HealthCheckServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function boot(): void
ScheduleCheck::new(),
SecurityAdvisoriesCheck::new(),
UsedDiskSpaceCheck::new(),
SslCertificationValidCheck::new()->url(config('app.url')),
// SslCertificationValidCheck::new()->url(config('app.url')),
// BackupsCheck::new(),
// OctaneCheck::new(),
]);
Expand Down

0 comments on commit 1e06fbf

Please sign in to comment.