Fatal error: Allowed memory size of 1073741824 bytes exhausted (tried to allocate 2269560 bytes) in /var/www/fairfriends.dev-server.xyz/vendor/doctrine/dbal/src/Driver/PDO/Statement.php on line 130
An exception occurred while executing a query: SQLSTATE[HY000]: General error: 2014 Cannot execute queries while other unbuffered queries are active. Consider using PDOStatement::fetchAll(). Alternatively, if your code is only ever going to run against mysql, you may enable query buffering by setting the PDO::MYSQL_ATTR_USE_BUFFERED_QUERY attribute. (500 Internal Server Error)

Symfony Exception

OutOfMemoryError PDOException Exception DriverException

HTTP 500 Internal Server Error

An exception occurred while executing a query: SQLSTATE[HY000]: General error: 2014 Cannot execute queries while other unbuffered queries are active. Consider using PDOStatement::fetchAll(). Alternatively, if your code is only ever going to run against mysql, you may enable query buffering by setting the PDO::MYSQL_ATTR_USE_BUFFERED_QUERY attribute.

Exceptions 4

Doctrine\DBAL\Exception\ DriverException

Show exception properties
Doctrine\DBAL\Exception\DriverException {#15559
  -query: Doctrine\DBAL\Query {#15560
    -sql: "SELECT `rule`.`id` as `rule.id`, `rule`.`name` as `rule.name`, `rule`.`priority` as `rule.priority`, `rule`.`description` as `rule.description`, `rule`.`payload` as `rule.payload`, `rule`.`invalid` as `rule.invalid`, `rule`.`areas` as `rule.areas`, `rule`.`custom_fields` as `rule.customFields`, `rule`.`module_types` as `rule.moduleTypes`, `rule`.`created_at` as `rule.createdAt`, `rule`.`updated_at` as `rule.updatedAt` FROM `rule` WHERE `rule`.`id` IN (?, ?, ?, ?, ?, ?, ?, ?)"
    -params: array:8 [
      0 => b"aFÏ\x1Aô©LOü¨&W┬┐~\x1C"
      1 => b"à╔\x1D wkNÒ¼\x02ðÔiØ<Û"
      2 => b"╣ÇE¿ßÉGQÜÒq¥i4X|"
      3 => b"\x01‹ü\x08<vz÷¦0꜈귄"
      4 => b"\x11Göô/\x0ELrÉ(║┼Õfc\t"
      5 => b"\e‹k+­’N7šH#ë­tÅ'"
      6 => b"ì^╝\x199fEÍ«â█çC╝õñ"
      7 => b"É:\x04\x10²3NC§¸­\x1C¯\x00A`"
    ]
    -types: array:8 [
      0 => 16
      1 => 16
      2 => 16
      3 => 16
      4 => 16
      5 => 16
      6 => 16
      7 => 16
    ]
  }
}
  1.             case 1364:
  2.             case 1566:
  3.                 return new NotNullConstraintViolationException($exception$query);
  4.         }
  5.         return new DriverException($exception$query);
  6.     }
  7. }
  1.     private function handleDriverException(
  2.         Driver\Exception $driverException,
  3.         ?Query $query
  4.     ): DriverException {
  5.         $this->exceptionConverter ??= $this->_driver->getExceptionConverter();
  6.         $exception                  $this->exceptionConverter->convert($driverException$query);
  7.         if ($exception instanceof ConnectionLost) {
  8.             $this->close();
  9.         }
  1.         Driver\Exception $e,
  2.         string $sql,
  3.         array $params = [],
  4.         array $types = []
  5.     ): DriverException {
  6.         return $this->handleDriverException($e, new Query($sql$params$types));
  7.     }
  8.     /** @internal */
  9.     final public function convertException(Driver\Exception $e): DriverException
  10.     {
  1.                 $result $connection->query($sql);
  2.             }
  3.             return new Result($result$this);
  4.         } catch (Driver\Exception $e) {
  5.             throw $this->convertExceptionDuringQuery($e$sql$params$types);
  6.         } finally {
  7.             if ($logger !== null) {
  8.                 $logger->stopQuery();
  9.             }
  10.         }
  1.      *
  2.      * @throws Exception
  3.      */
  4.     public function executeQuery(): Result
  5.     {
  6.         return $this->connection->executeQuery(
  7.             $this->getSQL(),
  8.             $this->params,
  9.             $this->paramTypes,
  10.             $this->resultCacheProfile,
  11.         );
  1.         if ($criteria->getTitle()) {
  2.             $query->setTitle($criteria->getTitle() . '::read');
  3.         }
  4.         return $query->executeQuery()->fetchAllAssociative();
  5.     }
  6.     /**
  7.      * @param EntityCollection<Entity> $collection
  8.      * @param array<string, mixed> $partial
  1.         if ($definition->isInheritanceAware() && $criteria->hasAssociation('parent')) {
  2.             throw DataAbstractionLayerException::parentAssociationCannotBeFetched();
  3.         }
  4.         $rows $this->fetch($criteria$definition$context$fields$partial);
  5.         $collection $this->hydrator->hydrate($collection$definition->getEntityClass(), $definition$rows$definition->getEntityName(), $context$partial);
  6.         $collection $this->fetchAssociations($criteria$definition$context$collection$fields$partial);
  1.         /** @var EntityCollection<Entity> $collectionClass */
  2.         $collectionClass $definition->getCollectionClass();
  3.         $fields $this->criteriaFieldsResolver->resolve($criteria$definition);
  4.         return $this->_read(
  5.             $criteria,
  6.             $definition,
  7.             $context,
  8.             new $collectionClass(),
  9.             $definition->getFields()->getBasicFields(),
  1.     private function read(Criteria $criteriaContext $context): EntityCollection
  2.     {
  3.         $criteria = clone $criteria;
  4.         /** @var TEntityCollection $entities */
  5.         $entities $this->reader->read($this->definition$criteria$context);
  6.         if ($criteria->getFields() === []) {
  7.             $event $this->eventFactory->create($entities->getElements(), $context);
  8.         } else {
  9.             $event $this->eventFactory->createPartial($entities->getElements(), $context);
  1.         if (!RepositorySearchDetector::isSearchRequired($this->definition$criteria)) {
  2.             $this->eventDispatcher->dispatch(
  3.                 new EntitySearchedEvent($criteria$this->definition$context)
  4.             );
  5.             $entities $this->read($criteria$context);
  6.             return new EntitySearchResult($this->definition->getEntityName(), $entities->count(), $entities$aggregations$criteria$context);
  7.         }
  8.         $ids $this->searchIds($criteria$context);
  1.      * @return EntitySearchResult<TEntityCollection>
  2.      */
  3.     public function search(Criteria $criteriaContext $context): EntitySearchResult
  4.     {
  5.         if (!$criteria->getTitle()) {
  6.             return $this->_search($criteria$context);
  7.         }
  8.         return Profiler::trace($criteria->getTitle(), fn () => $this->_search($criteria$context), 'repository');
  9.     }
  1.             return [];
  2.         }
  3.         $criteria = new Criteria($this->ruleIds);
  4.         return $this->ruleRepository->search($criteriaContext::createDefaultContext())->getElements();
  5.     }
  6. }
  1.         return \count($this->data);
  2.     }
  3.     public function collect(Request $requestResponse $response, ?\Throwable $exception null): void
  4.     {
  5.         $this->data $this->getMatchingRules();
  6.     }
  7.     public static function getTemplate(): string
  8.     {
  9.         return '@Profiling/Collector/rules.html.twig';
  1.         }
  2.         $response->headers->set('X-Debug-Token'$profile->getToken());
  3.         foreach ($this->collectors as $collector) {
  4.             $collector->collect($request$response$exception);
  5.             // we need to clone for sub-requests
  6.             $profile->addCollector(clone $collector);
  7.         }
  1.             $usageIndexValue $usageIndexReference = &$session->getUsageIndex();
  2.             $usageIndexReference \PHP_INT_MIN;
  3.         }
  4.         try {
  5.             if (!$profile $this->profiler->collect($request$event->getResponse(), $exception)) {
  6.                 return;
  7.             }
  8.         } finally {
  9.             if ($session instanceof Session) {
  10.                 $usageIndexReference $usageIndexValue;
  1.         $this->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         if (!$eventName) {
  2.             $eventName $event::class;
  3.         }
  4.         if (!$event instanceof ShopwareSalesChannelEvent) {
  5.             return $this->decorated->dispatch($event$eventName);
  6.         }
  7.         if (!$event->getSalesChannelContext()->hasExtension(SubscriptionContextStruct::SUBSCRIPTION_EXTENSION)) {
  8.             return $this->decorated->dispatch($event$eventName);
  9.         }
  1.      *
  2.      * @return TEvent
  3.      */
  4.     public function dispatch(object $event, ?string $eventName null): object
  5.     {
  6.         $event $this->dispatcher->dispatch($event$eventName);
  7.         if (!$event instanceof FlowEventAware) {
  8.             return $event;
  9.         }
  1.     ) {
  2.     }
  3.     public function dispatch(object $event, ?string $eventName null): object
  4.     {
  5.         $event $this->dispatcher->dispatch($event$eventName);
  6.         if (EnvironmentHelper::getVariable('DISABLE_EXTENSIONS'false)) {
  7.             return $event;
  8.         }
  1.                 }
  2.                 $this->dispatch($nested$name);
  3.             }
  4.         }
  5.         return $this->dispatcher->dispatch($event$eventName);
  6.     }
  7.     /**
  8.      * @param callable $listener can not use native type declaration @see https://github.com/symfony/symfony/issues/42283
  9.      */
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      */
  2.     private function filterResponse(Response $responseRequest $requestint $type): Response
  3.     {
  4.         $event = new ResponseEvent($this$request$type$response);
  5.         $this->dispatcher->dispatch($eventKernelEvents::RESPONSE);
  6.         $this->finishRequest($request$type);
  7.         return $event->getResponse();
  8.     }
  1.                 throw new ControllerDoesNotReturnResponseException($msg$controller__FILE____LINE__ 17);
  2.             }
  3.         }
  4.         return $this->filterResponse($response$request$type);
  5.     }
  6.     /**
  7.      * Filters a response object.
  8.      *
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.     }
  2.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $catch true): Response
  3.     {
  4.         if ($request->attributes->get('exception') !== null) {
  5.             return parent::handle($request$type$catch);
  6.         }
  7.         if (!$request->attributes->has('sw-skip-transformer')) {
  8.             try {
  9.                 $request $this->requestTransformer->transform($request);
  1.         }
  2.         $request $this->duplicateRequest($throwable$event->getRequest());
  3.         try {
  4.             $response $event->getKernel()->handle($requestHttpKernelInterface::SUB_REQUESTfalse);
  5.         } catch (\Exception $e) {
  6.             $f FlattenException::createFromThrowable($e);
  7.             $this->logException($esprintf('Exception thrown when handling an exception (%s: %s at %s line %s)'$f->getClass(), $f->getMessage(), basename($e->getFile()), $e->getLine()));
  1.         $this->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         if (!$eventName) {
  2.             $eventName $event::class;
  3.         }
  4.         if (!$event instanceof ShopwareSalesChannelEvent) {
  5.             return $this->decorated->dispatch($event$eventName);
  6.         }
  7.         if (!$event->getSalesChannelContext()->hasExtension(SubscriptionContextStruct::SUBSCRIPTION_EXTENSION)) {
  8.             return $this->decorated->dispatch($event$eventName);
  9.         }
  1.      *
  2.      * @return TEvent
  3.      */
  4.     public function dispatch(object $event, ?string $eventName null): object
  5.     {
  6.         $event $this->dispatcher->dispatch($event$eventName);
  7.         if (!$event instanceof FlowEventAware) {
  8.             return $event;
  9.         }
  1.     ) {
  2.     }
  3.     public function dispatch(object $event, ?string $eventName null): object
  4.     {
  5.         $event $this->dispatcher->dispatch($event$eventName);
  6.         if (EnvironmentHelper::getVariable('DISABLE_EXTENSIONS'false)) {
  7.             return $event;
  8.         }
  1.                 }
  2.                 $this->dispatch($nested$name);
  3.             }
  4.         }
  5.         return $this->dispatcher->dispatch($event$eventName);
  6.     }
  7.     /**
  8.      * @param callable $listener can not use native type declaration @see https://github.com/symfony/symfony/issues/42283
  9.      */
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      * Handles a throwable by trying to convert it to a Response.
  2.      */
  3.     private function handleThrowable(\Throwable $eRequest $requestint $type): Response
  4.     {
  5.         $event = new ExceptionEvent($this$request$type$eisKernelTerminating$this->terminating);
  6.         $this->dispatcher->dispatch($eventKernelEvents::EXCEPTION);
  7.         // a listener might have replaced the exception
  8.         $e $event->getThrowable();
  9.         if (!$event->hasResponse()) {
  1.         if ($pop $request !== $this->requestStack->getMainRequest()) {
  2.             $this->requestStack->push($request);
  3.         }
  4.         try {
  5.             $response $this->handleThrowable($exception$requestself::MAIN_REQUEST);
  6.         } finally {
  7.             if ($pop) {
  8.                 $this->requestStack->pop();
  9.             }
  10.         }
  1.                         if ($hasRun) {
  2.                             throw $e;
  3.                         }
  4.                         $hasRun true;
  5.                         $kernel->terminateWithException($e$request);
  6.                     };
  7.                 }
  8.             } elseif ($event instanceof ConsoleEvent && $app $event->getCommand()->getApplication()) {
  9.                 $output $event->getOutput();
  10.                 if ($output instanceof ConsoleOutputInterface) {
in /var/www/fairfriends.dev-server.xyz/vendor/symfony/error-handler/ErrorHandler.php :: Symfony\Component\HttpKernel\EventListener\{closure} (line 538)
  1.             $this->exceptionHandler null;
  2.         }
  3.         try {
  4.             if (null !== $exceptionHandler) {
  5.                 $exceptionHandler($exception);
  6.                 return;
  7.             }
  8.             $handlerException ??= $exception;
  9.         } catch (\Throwable $handlerException) {
  1.         }
  2.         try {
  3.             if (null !== $fatalError) {
  4.                 self::$exitCode 255;
  5.                 $handler->handleException($fatalError);
  6.             }
  7.         } catch (FatalError) {
  8.             // Ignore this re-throw
  9.         }
ErrorHandler::handleFatalError()

Doctrine\DBAL\Driver\PDO\ Exception

SQLSTATE[HY000]: General error: 2014 Cannot execute queries while other unbuffered queries are active. Consider using PDOStatement::fetchAll(). Alternatively, if your code is only ever going to run against mysql, you may enable query buffering by setting the PDO::MYSQL_ATTR_USE_BUFFERED_QUERY attribute.

  1.         } else {
  2.             $code     $exception->getCode();
  3.             $sqlState null;
  4.         }
  5.         return new self($exception->getMessage(), $sqlState$code$exception);
  6.     }
  7. }
  1.         }
  2.         try {
  3.             $this->stmt->execute($params);
  4.         } catch (PDOException $exception) {
  5.             throw Exception::new($exception);
  6.         }
  7.         return new Result($this->stmt);
  8.     }
  9. }
  1.     /**
  2.      * {@inheritDoc}
  3.      */
  4.     public function execute($params null): Result
  5.     {
  6.         return $this->wrappedStatement->execute($params);
  7.     }
  8. }
  1.         $this->stopwatch?->start('doctrine''doctrine');
  2.         $query->start();
  3.         try {
  4.             return parent::execute($params);
  5.         } finally {
  6.             $query->stop();
  7.             $this->stopwatch?->stop('doctrine');
  8.         }
  9.     }
  1.                 $stmt $connection->prepare($sql);
  2.                 $this->bindParameters($stmt$params$types);
  3.                 $result $stmt->execute();
  4.             } else {
  5.                 $result $connection->query($sql);
  6.             }
  7.             return new Result($result$this);
  1.      *
  2.      * @throws Exception
  3.      */
  4.     public function executeQuery(): Result
  5.     {
  6.         return $this->connection->executeQuery(
  7.             $this->getSQL(),
  8.             $this->params,
  9.             $this->paramTypes,
  10.             $this->resultCacheProfile,
  11.         );
  1.         if ($criteria->getTitle()) {
  2.             $query->setTitle($criteria->getTitle() . '::read');
  3.         }
  4.         return $query->executeQuery()->fetchAllAssociative();
  5.     }
  6.     /**
  7.      * @param EntityCollection<Entity> $collection
  8.      * @param array<string, mixed> $partial
  1.         if ($definition->isInheritanceAware() && $criteria->hasAssociation('parent')) {
  2.             throw DataAbstractionLayerException::parentAssociationCannotBeFetched();
  3.         }
  4.         $rows $this->fetch($criteria$definition$context$fields$partial);
  5.         $collection $this->hydrator->hydrate($collection$definition->getEntityClass(), $definition$rows$definition->getEntityName(), $context$partial);
  6.         $collection $this->fetchAssociations($criteria$definition$context$collection$fields$partial);
  1.         /** @var EntityCollection<Entity> $collectionClass */
  2.         $collectionClass $definition->getCollectionClass();
  3.         $fields $this->criteriaFieldsResolver->resolve($criteria$definition);
  4.         return $this->_read(
  5.             $criteria,
  6.             $definition,
  7.             $context,
  8.             new $collectionClass(),
  9.             $definition->getFields()->getBasicFields(),
  1.     private function read(Criteria $criteriaContext $context): EntityCollection
  2.     {
  3.         $criteria = clone $criteria;
  4.         /** @var TEntityCollection $entities */
  5.         $entities $this->reader->read($this->definition$criteria$context);
  6.         if ($criteria->getFields() === []) {
  7.             $event $this->eventFactory->create($entities->getElements(), $context);
  8.         } else {
  9.             $event $this->eventFactory->createPartial($entities->getElements(), $context);
  1.         if (!RepositorySearchDetector::isSearchRequired($this->definition$criteria)) {
  2.             $this->eventDispatcher->dispatch(
  3.                 new EntitySearchedEvent($criteria$this->definition$context)
  4.             );
  5.             $entities $this->read($criteria$context);
  6.             return new EntitySearchResult($this->definition->getEntityName(), $entities->count(), $entities$aggregations$criteria$context);
  7.         }
  8.         $ids $this->searchIds($criteria$context);
  1.      * @return EntitySearchResult<TEntityCollection>
  2.      */
  3.     public function search(Criteria $criteriaContext $context): EntitySearchResult
  4.     {
  5.         if (!$criteria->getTitle()) {
  6.             return $this->_search($criteria$context);
  7.         }
  8.         return Profiler::trace($criteria->getTitle(), fn () => $this->_search($criteria$context), 'repository');
  9.     }
  1.             return [];
  2.         }
  3.         $criteria = new Criteria($this->ruleIds);
  4.         return $this->ruleRepository->search($criteriaContext::createDefaultContext())->getElements();
  5.     }
  6. }
  1.         return \count($this->data);
  2.     }
  3.     public function collect(Request $requestResponse $response, ?\Throwable $exception null): void
  4.     {
  5.         $this->data $this->getMatchingRules();
  6.     }
  7.     public static function getTemplate(): string
  8.     {
  9.         return '@Profiling/Collector/rules.html.twig';
  1.         }
  2.         $response->headers->set('X-Debug-Token'$profile->getToken());
  3.         foreach ($this->collectors as $collector) {
  4.             $collector->collect($request$response$exception);
  5.             // we need to clone for sub-requests
  6.             $profile->addCollector(clone $collector);
  7.         }
  1.             $usageIndexValue $usageIndexReference = &$session->getUsageIndex();
  2.             $usageIndexReference \PHP_INT_MIN;
  3.         }
  4.         try {
  5.             if (!$profile $this->profiler->collect($request$event->getResponse(), $exception)) {
  6.                 return;
  7.             }
  8.         } finally {
  9.             if ($session instanceof Session) {
  10.                 $usageIndexReference $usageIndexValue;
  1.         $this->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         if (!$eventName) {
  2.             $eventName $event::class;
  3.         }
  4.         if (!$event instanceof ShopwareSalesChannelEvent) {
  5.             return $this->decorated->dispatch($event$eventName);
  6.         }
  7.         if (!$event->getSalesChannelContext()->hasExtension(SubscriptionContextStruct::SUBSCRIPTION_EXTENSION)) {
  8.             return $this->decorated->dispatch($event$eventName);
  9.         }
  1.      *
  2.      * @return TEvent
  3.      */
  4.     public function dispatch(object $event, ?string $eventName null): object
  5.     {
  6.         $event $this->dispatcher->dispatch($event$eventName);
  7.         if (!$event instanceof FlowEventAware) {
  8.             return $event;
  9.         }
  1.     ) {
  2.     }
  3.     public function dispatch(object $event, ?string $eventName null): object
  4.     {
  5.         $event $this->dispatcher->dispatch($event$eventName);
  6.         if (EnvironmentHelper::getVariable('DISABLE_EXTENSIONS'false)) {
  7.             return $event;
  8.         }
  1.                 }
  2.                 $this->dispatch($nested$name);
  3.             }
  4.         }
  5.         return $this->dispatcher->dispatch($event$eventName);
  6.     }
  7.     /**
  8.      * @param callable $listener can not use native type declaration @see https://github.com/symfony/symfony/issues/42283
  9.      */
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      */
  2.     private function filterResponse(Response $responseRequest $requestint $type): Response
  3.     {
  4.         $event = new ResponseEvent($this$request$type$response);
  5.         $this->dispatcher->dispatch($eventKernelEvents::RESPONSE);
  6.         $this->finishRequest($request$type);
  7.         return $event->getResponse();
  8.     }
  1.                 throw new ControllerDoesNotReturnResponseException($msg$controller__FILE____LINE__ 17);
  2.             }
  3.         }
  4.         return $this->filterResponse($response$request$type);
  5.     }
  6.     /**
  7.      * Filters a response object.
  8.      *
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.     }
  2.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $catch true): Response
  3.     {
  4.         if ($request->attributes->get('exception') !== null) {
  5.             return parent::handle($request$type$catch);
  6.         }
  7.         if (!$request->attributes->has('sw-skip-transformer')) {
  8.             try {
  9.                 $request $this->requestTransformer->transform($request);
  1.         }
  2.         $request $this->duplicateRequest($throwable$event->getRequest());
  3.         try {
  4.             $response $event->getKernel()->handle($requestHttpKernelInterface::SUB_REQUESTfalse);
  5.         } catch (\Exception $e) {
  6.             $f FlattenException::createFromThrowable($e);
  7.             $this->logException($esprintf('Exception thrown when handling an exception (%s: %s at %s line %s)'$f->getClass(), $f->getMessage(), basename($e->getFile()), $e->getLine()));
  1.         $this->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         if (!$eventName) {
  2.             $eventName $event::class;
  3.         }
  4.         if (!$event instanceof ShopwareSalesChannelEvent) {
  5.             return $this->decorated->dispatch($event$eventName);
  6.         }
  7.         if (!$event->getSalesChannelContext()->hasExtension(SubscriptionContextStruct::SUBSCRIPTION_EXTENSION)) {
  8.             return $this->decorated->dispatch($event$eventName);
  9.         }
  1.      *
  2.      * @return TEvent
  3.      */
  4.     public function dispatch(object $event, ?string $eventName null): object
  5.     {
  6.         $event $this->dispatcher->dispatch($event$eventName);
  7.         if (!$event instanceof FlowEventAware) {
  8.             return $event;
  9.         }
  1.     ) {
  2.     }
  3.     public function dispatch(object $event, ?string $eventName null): object
  4.     {
  5.         $event $this->dispatcher->dispatch($event$eventName);
  6.         if (EnvironmentHelper::getVariable('DISABLE_EXTENSIONS'false)) {
  7.             return $event;
  8.         }
  1.                 }
  2.                 $this->dispatch($nested$name);
  3.             }
  4.         }
  5.         return $this->dispatcher->dispatch($event$eventName);
  6.     }
  7.     /**
  8.      * @param callable $listener can not use native type declaration @see https://github.com/symfony/symfony/issues/42283
  9.      */
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      * Handles a throwable by trying to convert it to a Response.
  2.      */
  3.     private function handleThrowable(\Throwable $eRequest $requestint $type): Response
  4.     {
  5.         $event = new ExceptionEvent($this$request$type$eisKernelTerminating$this->terminating);
  6.         $this->dispatcher->dispatch($eventKernelEvents::EXCEPTION);
  7.         // a listener might have replaced the exception
  8.         $e $event->getThrowable();
  9.         if (!$event->hasResponse()) {
  1.         if ($pop $request !== $this->requestStack->getMainRequest()) {
  2.             $this->requestStack->push($request);
  3.         }
  4.         try {
  5.             $response $this->handleThrowable($exception$requestself::MAIN_REQUEST);
  6.         } finally {
  7.             if ($pop) {
  8.                 $this->requestStack->pop();
  9.             }
  10.         }
  1.                         if ($hasRun) {
  2.                             throw $e;
  3.                         }
  4.                         $hasRun true;
  5.                         $kernel->terminateWithException($e$request);
  6.                     };
  7.                 }
  8.             } elseif ($event instanceof ConsoleEvent && $app $event->getCommand()->getApplication()) {
  9.                 $output $event->getOutput();
  10.                 if ($output instanceof ConsoleOutputInterface) {
in /var/www/fairfriends.dev-server.xyz/vendor/symfony/error-handler/ErrorHandler.php :: Symfony\Component\HttpKernel\EventListener\{closure} (line 538)
  1.             $this->exceptionHandler null;
  2.         }
  3.         try {
  4.             if (null !== $exceptionHandler) {
  5.                 $exceptionHandler($exception);
  6.                 return;
  7.             }
  8.             $handlerException ??= $exception;
  9.         } catch (\Throwable $handlerException) {
  1.         }
  2.         try {
  3.             if (null !== $fatalError) {
  4.                 self::$exitCode 255;
  5.                 $handler->handleException($fatalError);
  6.             }
  7.         } catch (FatalError) {
  8.             // Ignore this re-throw
  9.         }
ErrorHandler::handleFatalError()

PDOException

SQLSTATE[HY000]: General error: 2014 Cannot execute queries while other unbuffered queries are active. Consider using PDOStatement::fetchAll(). Alternatively, if your code is only ever going to run against mysql, you may enable query buffering by setting the PDO::MYSQL_ATTR_USE_BUFFERED_QUERY attribute.

  1.                     ' Statement::bindParam() or Statement::bindValue() instead.',
  2.             );
  3.         }
  4.         try {
  5.             $this->stmt->execute($params);
  6.         } catch (PDOException $exception) {
  7.             throw Exception::new($exception);
  8.         }
  9.         return new Result($this->stmt);
  1.                     ' Statement::bindParam() or Statement::bindValue() instead.',
  2.             );
  3.         }
  4.         try {
  5.             $this->stmt->execute($params);
  6.         } catch (PDOException $exception) {
  7.             throw Exception::new($exception);
  8.         }
  9.         return new Result($this->stmt);
  1.     /**
  2.      * {@inheritDoc}
  3.      */
  4.     public function execute($params null): Result
  5.     {
  6.         return $this->wrappedStatement->execute($params);
  7.     }
  8. }
  1.         $this->stopwatch?->start('doctrine''doctrine');
  2.         $query->start();
  3.         try {
  4.             return parent::execute($params);
  5.         } finally {
  6.             $query->stop();
  7.             $this->stopwatch?->stop('doctrine');
  8.         }
  9.     }
  1.                 $stmt $connection->prepare($sql);
  2.                 $this->bindParameters($stmt$params$types);
  3.                 $result $stmt->execute();
  4.             } else {
  5.                 $result $connection->query($sql);
  6.             }
  7.             return new Result($result$this);
  1.      *
  2.      * @throws Exception
  3.      */
  4.     public function executeQuery(): Result
  5.     {
  6.         return $this->connection->executeQuery(
  7.             $this->getSQL(),
  8.             $this->params,
  9.             $this->paramTypes,
  10.             $this->resultCacheProfile,
  11.         );
  1.         if ($criteria->getTitle()) {
  2.             $query->setTitle($criteria->getTitle() . '::read');
  3.         }
  4.         return $query->executeQuery()->fetchAllAssociative();
  5.     }
  6.     /**
  7.      * @param EntityCollection<Entity> $collection
  8.      * @param array<string, mixed> $partial
  1.         if ($definition->isInheritanceAware() && $criteria->hasAssociation('parent')) {
  2.             throw DataAbstractionLayerException::parentAssociationCannotBeFetched();
  3.         }
  4.         $rows $this->fetch($criteria$definition$context$fields$partial);
  5.         $collection $this->hydrator->hydrate($collection$definition->getEntityClass(), $definition$rows$definition->getEntityName(), $context$partial);
  6.         $collection $this->fetchAssociations($criteria$definition$context$collection$fields$partial);
  1.         /** @var EntityCollection<Entity> $collectionClass */
  2.         $collectionClass $definition->getCollectionClass();
  3.         $fields $this->criteriaFieldsResolver->resolve($criteria$definition);
  4.         return $this->_read(
  5.             $criteria,
  6.             $definition,
  7.             $context,
  8.             new $collectionClass(),
  9.             $definition->getFields()->getBasicFields(),
  1.     private function read(Criteria $criteriaContext $context): EntityCollection
  2.     {
  3.         $criteria = clone $criteria;
  4.         /** @var TEntityCollection $entities */
  5.         $entities $this->reader->read($this->definition$criteria$context);
  6.         if ($criteria->getFields() === []) {
  7.             $event $this->eventFactory->create($entities->getElements(), $context);
  8.         } else {
  9.             $event $this->eventFactory->createPartial($entities->getElements(), $context);
  1.         if (!RepositorySearchDetector::isSearchRequired($this->definition$criteria)) {
  2.             $this->eventDispatcher->dispatch(
  3.                 new EntitySearchedEvent($criteria$this->definition$context)
  4.             );
  5.             $entities $this->read($criteria$context);
  6.             return new EntitySearchResult($this->definition->getEntityName(), $entities->count(), $entities$aggregations$criteria$context);
  7.         }
  8.         $ids $this->searchIds($criteria$context);
  1.      * @return EntitySearchResult<TEntityCollection>
  2.      */
  3.     public function search(Criteria $criteriaContext $context): EntitySearchResult
  4.     {
  5.         if (!$criteria->getTitle()) {
  6.             return $this->_search($criteria$context);
  7.         }
  8.         return Profiler::trace($criteria->getTitle(), fn () => $this->_search($criteria$context), 'repository');
  9.     }
  1.             return [];
  2.         }
  3.         $criteria = new Criteria($this->ruleIds);
  4.         return $this->ruleRepository->search($criteriaContext::createDefaultContext())->getElements();
  5.     }
  6. }
  1.         return \count($this->data);
  2.     }
  3.     public function collect(Request $requestResponse $response, ?\Throwable $exception null): void
  4.     {
  5.         $this->data $this->getMatchingRules();
  6.     }
  7.     public static function getTemplate(): string
  8.     {
  9.         return '@Profiling/Collector/rules.html.twig';
  1.         }
  2.         $response->headers->set('X-Debug-Token'$profile->getToken());
  3.         foreach ($this->collectors as $collector) {
  4.             $collector->collect($request$response$exception);
  5.             // we need to clone for sub-requests
  6.             $profile->addCollector(clone $collector);
  7.         }
  1.             $usageIndexValue $usageIndexReference = &$session->getUsageIndex();
  2.             $usageIndexReference \PHP_INT_MIN;
  3.         }
  4.         try {
  5.             if (!$profile $this->profiler->collect($request$event->getResponse(), $exception)) {
  6.                 return;
  7.             }
  8.         } finally {
  9.             if ($session instanceof Session) {
  10.                 $usageIndexReference $usageIndexValue;
  1.         $this->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         if (!$eventName) {
  2.             $eventName $event::class;
  3.         }
  4.         if (!$event instanceof ShopwareSalesChannelEvent) {
  5.             return $this->decorated->dispatch($event$eventName);
  6.         }
  7.         if (!$event->getSalesChannelContext()->hasExtension(SubscriptionContextStruct::SUBSCRIPTION_EXTENSION)) {
  8.             return $this->decorated->dispatch($event$eventName);
  9.         }
  1.      *
  2.      * @return TEvent
  3.      */
  4.     public function dispatch(object $event, ?string $eventName null): object
  5.     {
  6.         $event $this->dispatcher->dispatch($event$eventName);
  7.         if (!$event instanceof FlowEventAware) {
  8.             return $event;
  9.         }
  1.     ) {
  2.     }
  3.     public function dispatch(object $event, ?string $eventName null): object
  4.     {
  5.         $event $this->dispatcher->dispatch($event$eventName);
  6.         if (EnvironmentHelper::getVariable('DISABLE_EXTENSIONS'false)) {
  7.             return $event;
  8.         }
  1.                 }
  2.                 $this->dispatch($nested$name);
  3.             }
  4.         }
  5.         return $this->dispatcher->dispatch($event$eventName);
  6.     }
  7.     /**
  8.      * @param callable $listener can not use native type declaration @see https://github.com/symfony/symfony/issues/42283
  9.      */
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      */
  2.     private function filterResponse(Response $responseRequest $requestint $type): Response
  3.     {
  4.         $event = new ResponseEvent($this$request$type$response);
  5.         $this->dispatcher->dispatch($eventKernelEvents::RESPONSE);
  6.         $this->finishRequest($request$type);
  7.         return $event->getResponse();
  8.     }
  1.                 throw new ControllerDoesNotReturnResponseException($msg$controller__FILE____LINE__ 17);
  2.             }
  3.         }
  4.         return $this->filterResponse($response$request$type);
  5.     }
  6.     /**
  7.      * Filters a response object.
  8.      *
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.     }
  2.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $catch true): Response
  3.     {
  4.         if ($request->attributes->get('exception') !== null) {
  5.             return parent::handle($request$type$catch);
  6.         }
  7.         if (!$request->attributes->has('sw-skip-transformer')) {
  8.             try {
  9.                 $request $this->requestTransformer->transform($request);
  1.         }
  2.         $request $this->duplicateRequest($throwable$event->getRequest());
  3.         try {
  4.             $response $event->getKernel()->handle($requestHttpKernelInterface::SUB_REQUESTfalse);
  5.         } catch (\Exception $e) {
  6.             $f FlattenException::createFromThrowable($e);
  7.             $this->logException($esprintf('Exception thrown when handling an exception (%s: %s at %s line %s)'$f->getClass(), $f->getMessage(), basename($e->getFile()), $e->getLine()));
  1.         $this->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         if (!$eventName) {
  2.             $eventName $event::class;
  3.         }
  4.         if (!$event instanceof ShopwareSalesChannelEvent) {
  5.             return $this->decorated->dispatch($event$eventName);
  6.         }
  7.         if (!$event->getSalesChannelContext()->hasExtension(SubscriptionContextStruct::SUBSCRIPTION_EXTENSION)) {
  8.             return $this->decorated->dispatch($event$eventName);
  9.         }
  1.      *
  2.      * @return TEvent
  3.      */
  4.     public function dispatch(object $event, ?string $eventName null): object
  5.     {
  6.         $event $this->dispatcher->dispatch($event$eventName);
  7.         if (!$event instanceof FlowEventAware) {
  8.             return $event;
  9.         }
  1.     ) {
  2.     }
  3.     public function dispatch(object $event, ?string $eventName null): object
  4.     {
  5.         $event $this->dispatcher->dispatch($event$eventName);
  6.         if (EnvironmentHelper::getVariable('DISABLE_EXTENSIONS'false)) {
  7.             return $event;
  8.         }
  1.                 }
  2.                 $this->dispatch($nested$name);
  3.             }
  4.         }
  5.         return $this->dispatcher->dispatch($event$eventName);
  6.     }
  7.     /**
  8.      * @param callable $listener can not use native type declaration @see https://github.com/symfony/symfony/issues/42283
  9.      */
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      * Handles a throwable by trying to convert it to a Response.
  2.      */
  3.     private function handleThrowable(\Throwable $eRequest $requestint $type): Response
  4.     {
  5.         $event = new ExceptionEvent($this$request$type$eisKernelTerminating$this->terminating);
  6.         $this->dispatcher->dispatch($eventKernelEvents::EXCEPTION);
  7.         // a listener might have replaced the exception
  8.         $e $event->getThrowable();
  9.         if (!$event->hasResponse()) {
  1.         if ($pop $request !== $this->requestStack->getMainRequest()) {
  2.             $this->requestStack->push($request);
  3.         }
  4.         try {
  5.             $response $this->handleThrowable($exception$requestself::MAIN_REQUEST);
  6.         } finally {
  7.             if ($pop) {
  8.                 $this->requestStack->pop();
  9.             }
  10.         }
  1.                         if ($hasRun) {
  2.                             throw $e;
  3.                         }
  4.                         $hasRun true;
  5.                         $kernel->terminateWithException($e$request);
  6.                     };
  7.                 }
  8.             } elseif ($event instanceof ConsoleEvent && $app $event->getCommand()->getApplication()) {
  9.                 $output $event->getOutput();
  10.                 if ($output instanceof ConsoleOutputInterface) {
in /var/www/fairfriends.dev-server.xyz/vendor/symfony/error-handler/ErrorHandler.php :: Symfony\Component\HttpKernel\EventListener\{closure} (line 538)
  1.             $this->exceptionHandler null;
  2.         }
  3.         try {
  4.             if (null !== $exceptionHandler) {
  5.                 $exceptionHandler($exception);
  6.                 return;
  7.             }
  8.             $handlerException ??= $exception;
  9.         } catch (\Throwable $handlerException) {
  1.         }
  2.         try {
  3.             if (null !== $fatalError) {
  4.                 self::$exitCode 255;
  5.                 $handler->handleException($fatalError);
  6.             }
  7.         } catch (FatalError) {
  8.             // Ignore this re-throw
  9.         }
ErrorHandler::handleFatalError()

Symfony\Component\ErrorHandler\Error\ OutOfMemoryError

Error: Allowed memory size of 1073741824 bytes exhausted (tried to allocate 2269560 bytes)

  1.                     ' Statement::bindParam() or Statement::bindValue() instead.',
  2.             );
  3.         }
  4.         try {
  5.             $this->stmt->execute($params);
  6.         } catch (PDOException $exception) {
  7.             throw Exception::new($exception);
  8.         }
  9.         return new Result($this->stmt);

Stack Traces 4

[4/4] DriverException
Doctrine\DBAL\Exception\DriverException:
An exception occurred while executing a query: SQLSTATE[HY000]: General error: 2014 Cannot execute queries while other unbuffered queries are active.  Consider using PDOStatement::fetchAll().  Alternatively, if your code is only ever going to run against mysql, you may enable query buffering by setting the PDO::MYSQL_ATTR_USE_BUFFERED_QUERY attribute.

  at /var/www/fairfriends.dev-server.xyz/vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:118
  at Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert()
     (/var/www/fairfriends.dev-server.xyz/vendor/doctrine/dbal/src/Connection.php:1939)
  at Doctrine\DBAL\Connection->handleDriverException()
     (/var/www/fairfriends.dev-server.xyz/vendor/doctrine/dbal/src/Connection.php:1881)
  at Doctrine\DBAL\Connection->convertExceptionDuringQuery()
     (/var/www/fairfriends.dev-server.xyz/vendor/doctrine/dbal/src/Connection.php:1106)
  at Doctrine\DBAL\Connection->executeQuery()
     (/var/www/fairfriends.dev-server.xyz/vendor/doctrine/dbal/src/Query/QueryBuilder.php:344)
  at Doctrine\DBAL\Query\QueryBuilder->executeQuery()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:310)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->fetch()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:133)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->_read()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:76)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->read()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/DataAbstractionLayer/EntityRepository.php:204)
  at Shopware\Core\Framework\DataAbstractionLayer\EntityRepository->read()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/DataAbstractionLayer/EntityRepository.php:232)
  at Shopware\Core\Framework\DataAbstractionLayer\EntityRepository->_search()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/DataAbstractionLayer/EntityRepository.php:62)
  at Shopware\Core\Framework\DataAbstractionLayer\EntityRepository->search()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Profiling/Subscriber/ActiveRulesDataCollectorSubscriber.php:90)
  at Shopware\Core\Profiling\Subscriber\ActiveRulesDataCollectorSubscriber->getMatchingRules()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Profiling/Subscriber/ActiveRulesDataCollectorSubscriber.php:66)
  at Shopware\Core\Profiling\Subscriber\ActiveRulesDataCollectorSubscriber->collect()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/Profiler/Profiler.php:158)
  at Symfony\Component\HttpKernel\Profiler\Profiler->collect()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/EventListener/ProfilerListener.php:102)
  at Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelResponse()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/custom/plugins/SwagCommercial/src/Subscription/Framework/Event/SubscriptionEventDispatcher.php:35)
  at Shopware\Commercial\Subscription\Framework\Event\SubscriptionEventDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:50)
  at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:70)
  at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:31)
  at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:122)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/HttpKernel.php:216)
  at Symfony\Component\HttpKernel\HttpKernel->filterResponse()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/HttpKernel.php:204)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php:43)
  at Shopware\Core\Framework\Adapter\Kernel\HttpKernel->handle()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/EventListener/ErrorListener.php:97)
  at Symfony\Component\HttpKernel\EventListener\ErrorListener->onKernelException()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/custom/plugins/SwagCommercial/src/Subscription/Framework/Event/SubscriptionEventDispatcher.php:35)
  at Shopware\Commercial\Subscription\Framework\Event\SubscriptionEventDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:50)
  at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:70)
  at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:31)
  at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:122)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/HttpKernel.php:241)
  at Symfony\Component\HttpKernel\HttpKernel->handleThrowable()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/HttpKernel.php:134)
  at Symfony\Component\HttpKernel\HttpKernel->terminateWithException()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php:84)
  at Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::Symfony\Component\HttpKernel\EventListener\{closure}()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/error-handler/ErrorHandler.php:538)
  at Symfony\Component\ErrorHandler\ErrorHandler->handleException()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/error-handler/ErrorHandler.php:634)
  at Symfony\Component\ErrorHandler\ErrorHandler::handleFatalError()                
[3/4] Exception
Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[HY000]: General error: 2014 Cannot execute queries while other unbuffered queries are active.  Consider using PDOStatement::fetchAll().  Alternatively, if your code is only ever going to run against mysql, you may enable query buffering by setting the PDO::MYSQL_ATTR_USE_BUFFERED_QUERY attribute.

  at /var/www/fairfriends.dev-server.xyz/vendor/doctrine/dbal/src/Driver/PDO/Exception.php:28
  at Doctrine\DBAL\Driver\PDO\Exception::new()
     (/var/www/fairfriends.dev-server.xyz/vendor/doctrine/dbal/src/Driver/PDO/Statement.php:132)
  at Doctrine\DBAL\Driver\PDO\Statement->execute()
     (/var/www/fairfriends.dev-server.xyz/vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:69)
  at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/doctrine-bridge/Middleware/Debug/DBAL3/Statement.php:70)
  at Symfony\Bridge\Doctrine\Middleware\Debug\DBAL3\Statement->execute()
     (/var/www/fairfriends.dev-server.xyz/vendor/doctrine/dbal/src/Connection.php:1099)
  at Doctrine\DBAL\Connection->executeQuery()
     (/var/www/fairfriends.dev-server.xyz/vendor/doctrine/dbal/src/Query/QueryBuilder.php:344)
  at Doctrine\DBAL\Query\QueryBuilder->executeQuery()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:310)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->fetch()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:133)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->_read()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:76)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->read()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/DataAbstractionLayer/EntityRepository.php:204)
  at Shopware\Core\Framework\DataAbstractionLayer\EntityRepository->read()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/DataAbstractionLayer/EntityRepository.php:232)
  at Shopware\Core\Framework\DataAbstractionLayer\EntityRepository->_search()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/DataAbstractionLayer/EntityRepository.php:62)
  at Shopware\Core\Framework\DataAbstractionLayer\EntityRepository->search()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Profiling/Subscriber/ActiveRulesDataCollectorSubscriber.php:90)
  at Shopware\Core\Profiling\Subscriber\ActiveRulesDataCollectorSubscriber->getMatchingRules()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Profiling/Subscriber/ActiveRulesDataCollectorSubscriber.php:66)
  at Shopware\Core\Profiling\Subscriber\ActiveRulesDataCollectorSubscriber->collect()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/Profiler/Profiler.php:158)
  at Symfony\Component\HttpKernel\Profiler\Profiler->collect()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/EventListener/ProfilerListener.php:102)
  at Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelResponse()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/custom/plugins/SwagCommercial/src/Subscription/Framework/Event/SubscriptionEventDispatcher.php:35)
  at Shopware\Commercial\Subscription\Framework\Event\SubscriptionEventDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:50)
  at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:70)
  at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:31)
  at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:122)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/HttpKernel.php:216)
  at Symfony\Component\HttpKernel\HttpKernel->filterResponse()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/HttpKernel.php:204)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php:43)
  at Shopware\Core\Framework\Adapter\Kernel\HttpKernel->handle()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/EventListener/ErrorListener.php:97)
  at Symfony\Component\HttpKernel\EventListener\ErrorListener->onKernelException()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/custom/plugins/SwagCommercial/src/Subscription/Framework/Event/SubscriptionEventDispatcher.php:35)
  at Shopware\Commercial\Subscription\Framework\Event\SubscriptionEventDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:50)
  at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:70)
  at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:31)
  at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:122)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/HttpKernel.php:241)
  at Symfony\Component\HttpKernel\HttpKernel->handleThrowable()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/HttpKernel.php:134)
  at Symfony\Component\HttpKernel\HttpKernel->terminateWithException()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php:84)
  at Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::Symfony\Component\HttpKernel\EventListener\{closure}()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/error-handler/ErrorHandler.php:538)
  at Symfony\Component\ErrorHandler\ErrorHandler->handleException()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/error-handler/ErrorHandler.php:634)
  at Symfony\Component\ErrorHandler\ErrorHandler::handleFatalError()                
[2/4] PDOException
PDOException:
SQLSTATE[HY000]: General error: 2014 Cannot execute queries while other unbuffered queries are active.  Consider using PDOStatement::fetchAll().  Alternatively, if your code is only ever going to run against mysql, you may enable query buffering by setting the PDO::MYSQL_ATTR_USE_BUFFERED_QUERY attribute.

  at /var/www/fairfriends.dev-server.xyz/vendor/doctrine/dbal/src/Driver/PDO/Statement.php:130
  at PDOStatement->execute()
     (/var/www/fairfriends.dev-server.xyz/vendor/doctrine/dbal/src/Driver/PDO/Statement.php:130)
  at Doctrine\DBAL\Driver\PDO\Statement->execute()
     (/var/www/fairfriends.dev-server.xyz/vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:69)
  at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/doctrine-bridge/Middleware/Debug/DBAL3/Statement.php:70)
  at Symfony\Bridge\Doctrine\Middleware\Debug\DBAL3\Statement->execute()
     (/var/www/fairfriends.dev-server.xyz/vendor/doctrine/dbal/src/Connection.php:1099)
  at Doctrine\DBAL\Connection->executeQuery()
     (/var/www/fairfriends.dev-server.xyz/vendor/doctrine/dbal/src/Query/QueryBuilder.php:344)
  at Doctrine\DBAL\Query\QueryBuilder->executeQuery()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:310)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->fetch()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:133)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->_read()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityReader.php:76)
  at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityReader->read()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/DataAbstractionLayer/EntityRepository.php:204)
  at Shopware\Core\Framework\DataAbstractionLayer\EntityRepository->read()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/DataAbstractionLayer/EntityRepository.php:232)
  at Shopware\Core\Framework\DataAbstractionLayer\EntityRepository->_search()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/DataAbstractionLayer/EntityRepository.php:62)
  at Shopware\Core\Framework\DataAbstractionLayer\EntityRepository->search()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Profiling/Subscriber/ActiveRulesDataCollectorSubscriber.php:90)
  at Shopware\Core\Profiling\Subscriber\ActiveRulesDataCollectorSubscriber->getMatchingRules()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Profiling/Subscriber/ActiveRulesDataCollectorSubscriber.php:66)
  at Shopware\Core\Profiling\Subscriber\ActiveRulesDataCollectorSubscriber->collect()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/Profiler/Profiler.php:158)
  at Symfony\Component\HttpKernel\Profiler\Profiler->collect()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/EventListener/ProfilerListener.php:102)
  at Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelResponse()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/custom/plugins/SwagCommercial/src/Subscription/Framework/Event/SubscriptionEventDispatcher.php:35)
  at Shopware\Commercial\Subscription\Framework\Event\SubscriptionEventDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:50)
  at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:70)
  at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:31)
  at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:122)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/HttpKernel.php:216)
  at Symfony\Component\HttpKernel\HttpKernel->filterResponse()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/HttpKernel.php:204)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php:43)
  at Shopware\Core\Framework\Adapter\Kernel\HttpKernel->handle()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/EventListener/ErrorListener.php:97)
  at Symfony\Component\HttpKernel\EventListener\ErrorListener->onKernelException()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/custom/plugins/SwagCommercial/src/Subscription/Framework/Event/SubscriptionEventDispatcher.php:35)
  at Shopware\Commercial\Subscription\Framework\Event\SubscriptionEventDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:50)
  at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:70)
  at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:31)
  at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:122)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/HttpKernel.php:241)
  at Symfony\Component\HttpKernel\HttpKernel->handleThrowable()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/HttpKernel.php:134)
  at Symfony\Component\HttpKernel\HttpKernel->terminateWithException()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php:84)
  at Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::Symfony\Component\HttpKernel\EventListener\{closure}()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/error-handler/ErrorHandler.php:538)
  at Symfony\Component\ErrorHandler\ErrorHandler->handleException()
     (/var/www/fairfriends.dev-server.xyz/vendor/symfony/error-handler/ErrorHandler.php:634)
  at Symfony\Component\ErrorHandler\ErrorHandler::handleFatalError()                
[1/4] OutOfMemoryError
Symfony\Component\ErrorHandler\Error\OutOfMemoryError:
Error: Allowed memory size of 1073741824 bytes exhausted (tried to allocate 2269560 bytes)

  at /var/www/fairfriends.dev-server.xyz/vendor/doctrine/dbal/src/Driver/PDO/Statement.php:130