disable sentinel for now

This commit is contained in:
Andras Bacsai 2024-05-10 08:42:17 +02:00
parent 1f5f51e3e5
commit 5ff0c563ec

View File

@ -58,7 +58,7 @@ private function pull_helper_image($schedule)
{
$servers = Server::all()->where('settings.is_usable', true)->where('settings.is_reachable', true)->where('ip', '!=', '1.2.3.4');
foreach ($servers as $server) {
$schedule->job(new PullSentinelImageJob($server))->everyFiveMinutes()->onOneServer();
// $schedule->job(new PullSentinelImageJob($server))->everyFiveMinutes()->onOneServer();
$schedule->job(new PullHelperImageJob($server))->everyFiveMinutes()->onOneServer();
}
}