FIx ot reschedule in one hour but in one minute
All checks were successful
Push image to registry / build-image (push) Successful in 6m42s

This commit is contained in:
2025-02-26 07:19:58 +01:00
parent 8d814c7658
commit b177b27390

View File

@ -196,7 +196,7 @@ class HellcaseJob extends BrowserJob implements ShouldBeUniqueUntilProcessing
$hours = $availibleInButton->getText();
// If the text is like "in 26 sec." we need to put one minute
if (str_contains($hours, "sec")) {
$this->reschedule(60);
$this->reschedule(1);
return;
}
$hours = explode(" ", $hours);