importcsv.php - 255 attempts doesn't get deleted in DB

Im using the default job of Import Action but im encountering a problem. When a import job reaches 255 attempts, it doesn't get deleted and resulting to other job/queues being stuck with it Already extended the class but nothing happens
class CustomImportCsv extends ImportCsv
{
public $tries = 250;
public $maxExceptions = 3;
public $failOnTimeout = true;

public function retryUntil(): ?CarbonInterface
{
if ($this->attempts() > $this->tries) {
return now()->subSecond();
}
return now()->addMinutes(1);
}
}
class CustomImportCsv extends ImportCsv
{
public $tries = 250;
public $maxExceptions = 3;
public $failOnTimeout = true;

public function retryUntil(): ?CarbonInterface
{
if ($this->attempts() > $this->tries) {
return now()->subSecond();
}
return now()->addMinutes(1);
}
}
below is the job/queue
No description
1 Reply
JustNoOne
JustNoOneOP14h ago
Up

Did you find this page helpful?