Skip to content

Commit

Permalink
limit still needeed
Browse files Browse the repository at this point in the history
  • Loading branch information
molinju committed Jul 8, 2024
1 parent 1860e6a commit 424b547
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Controller/UskMintedController.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function uskMintedv2(EntityManagerInterface $entityManager)
{

$usk_minted_repo = $entityManager->getRepository(UskMinted::class);
$usk_minted_all = $usk_minted_repo->findBy([], ["tracked" => "ASC"]);
$usk_minted_all = $usk_minted_repo->findBy([], ["tracked" => "ASC"],null,30000);
$result = [];

foreach($usk_minted_all as $item) {
Expand Down

0 comments on commit 424b547

Please sign in to comment.