You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you try to access a batch that is not existent (in the database) or call any action like retry the xhr response is a 500 (Attempt to read property "failedJobIds" on null).
The batch retrieval checks for the existence before calling toBatch
public function find(string $batchId)
{
$batch = $this->connection->table($this->table)
->useWritePdo()
->where('id', $batchId)
->first();
if ($batch) {
return $this->toBatch($batch);
}
}
but show or retry just assume the batch is existent.
As Laravel is an open source project, we rely on the community to help us diagnose and fix issues as it is not possible to research and fix every issue reported to us via GitHub.
If possible, please make a pull request fixing the issue you have described, along with corresponding tests. All pull requests are promptly reviewed by the Laravel team.
Horizon Version
5.24.2
Laravel Version
11.2.0
PHP Version
8.3.4
Redis Driver
PhpRedis
Redis Version
6.0.2
Database Driver & Version
No response
Description
If you try to access a batch that is not existent (in the database) or call any action like retry the xhr response is a 500 (Attempt to read property "failedJobIds" on null).
The batch retrieval checks for the existence before calling toBatch
but show or retry just assume the batch is existent.
Steps To Reproduce
Access any batch url via horizon that is not existent.
i.e:
/horizon/batches/9bc9d622-c2d0-45ca-aa13-4e7dfb1efed0
The text was updated successfully, but these errors were encountered: