Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
loevgaard committed Nov 18, 2024
1 parent 857ba58 commit 21448bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Provider/FailedUploadOrderRequestsProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function __construct(
public function getUploadOrderRequests(): \Generator
{
$qb = $this->getRepository($this->uploadOrderRequestClass)->createQueryBuilder('o')
->andWhere('o.state = :orderState')
->andWhere('o.state = :state')
->andWhere('o.stateUpdatedAt < :stateUpdatedAt')
->setParameter('state', UploadOrderRequestInterface::STATE_PROCESSING)
->setParameter('stateUpdatedAt', new \DateTimeImmutable('-' . $this->processingTimeout))
Expand Down

0 comments on commit 21448bf

Please sign in to comment.