Error 500 Internal Server Error

GET https://euromouldings.accept.vzw.io/

Exceptions

No alive nodes found in your cluster

Exception

Elasticsearch\Common\Exceptions\ NoNodesAvailableException

  1.             if ($this->readyToRevive($connection) === true) {
  2.                 return $connection;
  3.             }
  4.         }
  5.         throw new NoNodesAvailableException("No alive nodes found in your cluster");
  6.     }
  7.     public function scheduleCheck(): void
  8.     {
  9.     }
  1.      * Returns a single connection from the connection pool
  2.      * Potentially performs a sniffing step before returning
  3.      */
  4.     public function getConnection(): ConnectionInterface
  5.     {
  6.         return $this->connectionPool->nextConnection();
  7.     }
  8.     /**
  9.      * Perform a request to the Cluster
  10.      *
  1.      * @throws Common\Exceptions\NoNodesAvailableException|\Exception
  2.      */
  3.     public function performRequest(string $methodstring $uri, array $params = [], $body null, array $options = []): FutureArrayInterface
  4.     {
  5.         try {
  6.             $connection  $this->getConnection();
  7.         } catch (Exceptions\NoNodesAvailableException $exception) {
  8.             $this->log->critical('No alive nodes found in cluster');
  9.             throw $exception;
  10.         }
  1.                                 $shouldRetry $transport->shouldRetry($request);
  2.                                 $shouldRetryText = ($shouldRetry) ? 'true' 'false';
  3.                                 $this->log->warning("Retries left? $shouldRetryText");
  4.                                 if ($shouldRetry && !$neverRetry) {
  5.                                     return $transport->performRequest(
  6.                                         $request['http_method'],
  7.                                         $request['uri'],
  8.                                         [],
  9.                                         $request['body'],
  10.                                         $options
in vendor/react/promise/src/Internal/FulfilledPromise.php -> Elasticsearch\Connections\{closure} (line 47)
  1.         try {
  2.             /**
  3.              * @var PromiseInterface<T>|T $result
  4.              */
  5.             $result $onFulfilled($this->value);
  6.             return resolve($result);
  7.         } catch (\Throwable $exception) {
  8.             return new RejectedPromise($exception);
  9.         }
  10.     }
  1.      */
  2.     public function then(
  3.         ?callable $onFulfilled null,
  4.         ?callable $onRejected null
  5.     ) {
  6.         return $this->promise()->then($onFulfilled$onRejected);
  7.     }
  8. }
  1.         ?callable $onFulfilled null,
  2.         ?callable $onRejected null,
  3.         ?callable $onProgress null
  4.     ) {
  5.         return new FutureArray(
  6.             $future->then($onFulfilled$onRejected$onProgress),
  7.             [$future'wait'],
  8.             [$future'cancel']
  9.         );
  10.     }
  1.             $this->lastRequest = [];
  2.             $this->lastRequest['request'] = $request;
  3.             // Send the request using the wrapped handler.
  4.             $response =  Core::proxy(
  5.                 $handler($request), 
  6.                 function ($response) use ($connection$transport$request$options) {
  7.                     $this->lastRequest['response'] = $response;
  1.         if (empty($request['client'])) {
  2.             unset($request['client']);
  3.         }
  4.         $handler $this->handler;
  5.         $future $handler($request$this$transport$options);
  6.         return $future;
  7.     }
  8.     public function getTransportSchema(): string
  1.         $response             = [];
  2.         $caughtException      null;
  3.         $this->lastConnection $connection;
  4.         $future $connection->performRequest(
  5.             $method,
  6.             $uri,
  7.             $params,
  8.             $body,
  9.             $options,
  1.     /**
  2.      * @return callable|array
  3.      */
  4.     private function performRequest(AbstractEndpoint $endpoint)
  5.     {
  6.         $promise =  $this->transport->performRequest(
  7.             $endpoint->getMethod(),
  8.             $endpoint->getURI(),
  9.             $endpoint->getParams(),
  10.             $endpoint->getBody(),
  11.             $endpoint->getOptions()
  1.         $endpoint->setParams($params);
  2.         $endpoint->setIndex($index);
  3.         $endpoint->setType($type);
  4.         $endpoint->setBody($body);
  5.         return $this->performRequest($endpoint);
  6.     }
  7.     /**
  8.      * Searches a vector tile for geospatial values. Returns results as a binary Mapbox vector tile.
  9.      *
  10.      * $params['index']            = (list) Comma-separated list of data streams, indices, or aliases to search
  1.         if (!empty($queryStringParams)) {
  2.             $params array_merge($queryStringParams$params);
  3.         }
  4.         $this->stopwatch('start''search');
  5.         $result $this->client->search($params);
  6.         $this->stopwatch('stop''search');
  7.         return $result;
  8.     }
  1.      *
  2.      * @return array
  3.      */
  4.     private function executeSearch(Search $search)
  5.     {
  6.         return $this->getManager()->search([$this->getType()], $search->toArray(), $search->getUriParams());
  7.     }
  8.     /**
  9.      * Counts documents by given search.
  10.      *
  1.      *
  2.      * @return DocumentIterator
  3.      */
  4.     public function findDocuments(Search $search)
  5.     {
  6.         $results $this->executeSearch($search);
  7.         return new DocumentIterator(
  8.             $results,
  9.             $this->getManager(),
  10.             $this->getScrollConfiguration($results$search->getScroll())
  1.             $targetGroupQuery = new BoolQuery();
  2.             $targetGroupQuery->add(new TermQuery('excerpt.audience_targeting_groups'$targetGroup), BoolQuery::MUST);
  3.             $search->addQuery($targetGroupQuery);
  4.         }
  5.         return $repository->findDocuments($search);
  6.     }
  7.     /**
  8.      * Initialize search with neccesary queries.
  9.      */
  1.         $filters['excluded'] = $this->getExcludedFilter($filters$propertyParameter);
  2.         /** @var string|null $locale */
  3.         $locale $options['locale'];
  4.         $webspaceKey $this->getWebspaceKey($propertyParameter$options);
  5.         $queryResult $this->getSearchResult($filters$limit$page$pageSize$locale$webspaceKey);
  6.         $result = [];
  7.         /** @var ArticleViewDocumentInterface $document */
  8.         foreach ($queryResult as $document) {
  9.             $this->referenceStore->add($document->getUuid());
  1.             // is paginated
  2.             $page $this->getCurrentPage($params['page_parameter']->getValue());
  3.             $pageSize \intval($params['max_per_page']->getValue());
  4.             // resolve paginated filters
  5.             $data $provider->resolveResourceItems(
  6.                 $filters,
  7.                 $params,
  8.                 $options,
  9.                 !empty($limit) ? \intval($limit) : null,
  10.                 $page,
  1.         $params \array_merge(
  2.             $this->getDefaultParams($property),
  3.             $property->getParams()
  4.         );
  5.         $this->getContentData($property);
  6.         $config $property->getValue();
  7.         $config \array_merge(
  8.             [
  9.                 'dataSource' => null,
  1.     public function getViewData(PropertyInterface $property)
  2.     {
  3.         return $this->prepareData(
  4.             $property,
  5.             function(ContentTypeInterface $contentType$property) {
  6.                 return $contentType->getViewData($property);
  7.             },
  8.             false
  9.         );
  10.     }
in vendor/sulu/sulu/src/Sulu/Component/Content/Types/BlockContentType.php -> Sulu\Component\Content\Types\{closure} (line 404)
  1.                 $blockData['settings'] = $blockPropertyTypeSettings;
  2.             }
  3.             foreach ($blockPropertyType->getChildProperties() as $childProperty) {
  4.                 $contentType $this->contentTypeManager->get($childProperty->getContentTypeName());
  5.                 $blockData[$childProperty->getName()] = $dataCallback($contentType$childProperty);
  6.             }
  7.             $data[] = $blockData;
  8.         }
  1.         }
  2.     }
  3.     public function getViewData(PropertyInterface $property)
  4.     {
  5.         return $this->prepareData(
  6.             $property,
  7.             function(ContentTypeInterface $contentType$property) {
  8.                 return $contentType->getViewData($property);
  9.             },
  10.             false
  1.         }
  2.         foreach ($structure->getProperties(true) as $property) {
  3.             if (null === $includedProperties || \in_array($property->getName(), $includedProperties)) {
  4.                 $contentType $this->contentTypeManager->get($property->getContentTypeName());
  5.                 $data['view'][$property->getName()] = $contentType->getViewData($property);
  6.                 $data['content'][$property->getName()] = $contentType->getContentData($property);
  7.             }
  8.         }
  9.         return $data;
  1.         ?RequestAnalyzerInterface $requestAnalyzer null,
  2.         ?StructureInterface $structure null,
  3.         $preview false
  4.     ) {
  5.         if (null !== $structure) {
  6.             $structureData $this->structureResolver->resolve($structuretrue);
  7.         } else {
  8.             $structureData = [];
  9.         }
  10.         if (!$requestAnalyzer) {
  1.      *
  2.      * @return mixed[]
  3.      */
  4.     protected function getAttributes($attributes, ?StructureInterface $structure null$preview false)
  5.     {
  6.         return $this->container->get('sulu_website.resolver.parameter')->resolve(
  7.             $attributes,
  8.             $this->container->get('sulu_core.webspace.request_analyzer'),
  9.             $structure,
  10.             $preview
  11.         );
  1.         if (!$this->container->get('twig')->getLoader()->exists($viewTemplate)) {
  2.             throw new NotAcceptableHttpException(\sprintf('Page does not exist in "%s" format.'$requestFormat));
  3.         }
  4.         // get attributes to render template
  5.         $data $this->getAttributes($attributes$structure$preview);
  6.         // if partial render only content block else full page
  7.         if ($partial) {
  8.             $content $this->renderBlockView(
  9.                 $viewTemplate,
  1.      *
  2.      * @return Response
  3.      */
  4.     public function indexAction(StructureInterface $structure$preview false$partial false)
  5.     {
  6.         $response $this->renderStructure(
  7.             $structure,
  8.             [],
  9.             $preview,
  10.             $partial
  11.         );
in vendor/symfony/http-kernel/HttpKernel.php -> indexAction (line 183)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response$event);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  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.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle() in public/index.php (line 69)
  1. // When using the HttpCache, you need to call the method in your front controller
  2. // instead of relying on the configuration parameter
  3. // https://symfony.com/doc/6.4/reference/configuration/framework.html#http-method-override
  4. Request::enableHttpMethodParameterOverride();
  5. $request Request::createFromGlobals();
  6. $response $kernel->handle($request);
  7. $response->send();
  8. $kernel->terminate($request$response);

Logs

Level Channel Message
INFO 20:27:46 deprecation User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "ONGR\ElasticsearchBundle\ONGRElasticsearchBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Version detection logic for MySQL will change in DBAL 4. Please specify the version as the server reports it, e.g. "10.9.3-MariaDB" instead of "mariadb-10.9". (AbstractMySQLDriver.php:176 called by AbstractMySQLDriver.php:45, https://github.com/doctrine/dbal/pull/5779, package doctrine/orm)
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "JsonSerializable::jsonSerialize()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\Content\Compat\Property" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "Symfony\Component\Form\AbstractType::buildForm()" might add "void" as a native return type declaration in the future. Do the same in child class "Sulu\Bundle\PageBundle\Form\Type\AbstractStructureBehaviorType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "Symfony\Component\Form\AbstractType::buildForm()" might add "void" as a native return type declaration in the future. Do the same in child class "Sulu\Bundle\ArticleBundle\Document\Form\ArticleDocumentType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "Symfony\Component\Form\AbstractType::configureOptions()" might add "void" as a native return type declaration in the future. Do the same in child class "Sulu\Bundle\ArticleBundle\Document\Form\ArticleDocumentType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "Symfony\Component\Form\AbstractType::buildForm()" might add "void" as a native return type declaration in the future. Do the same in child class "Sulu\Bundle\ArticleBundle\Document\Form\ArticlePageDocumentType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "Symfony\Component\Form\AbstractType::configureOptions()" might add "void" as a native return type declaration in the future. Do the same in child class "Sulu\Bundle\ArticleBundle\Document\Form\ArticlePageDocumentType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "Symfony\Component\Form\AbstractType::configureOptions()" might add "void" as a native return type declaration in the future. Do the same in child class "Sulu\Bundle\ArticleBundle\Document\Form\UnstructuredType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredSupertypeNames()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isAbstract()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isMixin()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::hasOrderableChildNodes()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isQueryable()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getPrimaryItemName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredPropertyDefinitions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredChildNodeDefinitions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::getDeclaringNodeType()" might add "NodeTypeInterface" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::getName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::isAutoCreated()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::isMandatory()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::getOnParentVersion()" might add "int" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::isProtected()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::getRequiredPrimaryTypes()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::getRequiredPrimaryTypeNames()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::getDefaultPrimaryType()" might add "NodeTypeInterface" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::getDefaultPrimaryTypeName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::allowsSameNameSiblings()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredSupertypeNames()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isAbstract()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isMixin()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::hasOrderableChildNodes()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isQueryable()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getPrimaryItemName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredPropertyDefinitions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredChildNodeDefinitions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "JMS\Serializer\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Serializer\ArticlePageSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "JMS\Serializer\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Serializer\ArticleSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "JMS\Serializer\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Serializer\WebsiteArticleUrlsSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "JsonSerializable::jsonSerialize()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\Content\Compat\Structure\StructureBridge" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\ArticlePageSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\ArticleSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\DateShardingSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\PageSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\WebspaceSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "PHPCR\Query\QueryManagerInterface::createQuery()" might add "QueryInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QueryManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "IteratorAggregate::getIterator()" might add "\Traversable" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\Webspace\Manager\WebspaceCollection" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Method "JsonSerializable::jsonSerialize()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\Localization\Localization" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead.
{
    "exception": {}
}
INFO 20:27:46 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "57f58a"
    },
    "request_uri": "https://euromouldings.accept.vzw.io/_profiler/57f58a",
    "method": "GET"
}
INFO 20:27:46 deprecation User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
DEBUG 20:27:46 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 20:27:46 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 20:27:46 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest"
}
DEBUG 20:27:46 event Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest"
}
DEBUG 20:27:46 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 20:27:46 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 20:27:46 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 20:27:46 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 20:27:46 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\Routing\RequestListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\Routing\\RequestListener::onRequest"
}
DEBUG 20:27:46 event Notified event "kernel.request" to listener "Sulu\Bundle\SecurityBundle\EventListener\SystemListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SystemListener::onKernelRequest"
}
DEBUG 20:27:46 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 20:27:46 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 20:27:46 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\TranslatorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\TranslatorListener::onKernelRequest"
}
DEBUG 20:27:46 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
DEBUG 20:27:46 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 20:27:46 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 20:27:46 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\SecurityListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\SecurityListener::onKernelRequest"
}
DEBUG 20:27:46 event Notified event "kernel.request" to listener "Sulu\Bundle\FormBundle\Event\RequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\FormBundle\\Event\\RequestListener::onKernelRequest"
}
DEBUG 20:27:46 event Notified event "kernel.request" to listener "Sulu\Bundle\ThemeBundle\EventListener\SetThemeEventListener::setActiveThemeOnRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\ThemeBundle\\EventListener\\SetThemeEventListener::setActiveThemeOnRequest"
}
DEBUG 20:27:46 event Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\AttributesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\AttributesListener::onKernelRequest"
}
DEBUG 20:27:46 event Notified event "kernel.request" to listener "Sulu\Bundle\MediaBundle\FileInspector\UploadFileSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\MediaBundle\\FileInspector\\UploadFileSubscriber::onKernelRequest"
}
DEBUG 20:27:46 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 20:27:46 event Notified event "kernel.request" to listener "Sulu\Bundle\FormBundle\Event\ProtectedMediaSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\FormBundle\\Event\\ProtectedMediaSubscriber::onRequest"
}
DEBUG 20:27:46 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 20:27:46 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 20:27:46 event Notified event "kernel.controller" to listener "Sulu\Bundle\SecurityBundle\EventListener\SuluSecurityListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SuluSecurityListener::onKernelController"
}
DEBUG 20:27:46 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\IsSignatureValidAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\IsSignatureValidAttributeListener::onKernelControllerArguments"
}
DEBUG 20:27:46 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
}
DEBUG 20:27:46 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 20:27:46 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 20:27:46 event Notified event "kernel.controller_arguments" to listener "Container1OuJpve\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Container1OuJpve\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
}
DEBUG 20:27:46 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
INFO 20:27:46 deprecation User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 20:27:46 deprecation User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 20:27:47 deprecation User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 20:27:47 deprecation User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 20:27:47 deprecation User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}

Stack Trace

NoNodesAvailableException
Elasticsearch\Common\Exceptions\NoNodesAvailableException:
No alive nodes found in your cluster

  at vendor/elasticsearch/elasticsearch/src/Elasticsearch/ConnectionPool/StaticNoPingConnectionPool.php:64
  at Elasticsearch\ConnectionPool\StaticNoPingConnectionPool->nextConnection()
     (vendor/elasticsearch/elasticsearch/src/Elasticsearch/Transport.php:82)
  at Elasticsearch\Transport->getConnection()
     (vendor/elasticsearch/elasticsearch/src/Elasticsearch/Transport.php:99)
  at Elasticsearch\Transport->performRequest()
     (vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/Connection.php:296)
  at Elasticsearch\Connections\Connection->Elasticsearch\Connections\{closure}()
     (vendor/react/promise/src/Internal/FulfilledPromise.php:47)
  at React\Promise\Internal\FulfilledPromise->then()
     (vendor/ezimuel/ringphp/src/Future/CompletedFutureValue.php:66)
  at GuzzleHttp\Ring\Future\CompletedFutureValue->then()
     (vendor/ezimuel/ringphp/src/Core.php:341)
  at GuzzleHttp\Ring\Core::proxy()
     (vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/Connection.php:264)
  at Elasticsearch\Connections\Connection->Elasticsearch\Connections\{closure}()
     (vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/Connection.php:241)
  at Elasticsearch\Connections\Connection->performRequest()
     (vendor/elasticsearch/elasticsearch/src/Elasticsearch/Transport.php:109)
  at Elasticsearch\Transport->performRequest()
     (vendor/elasticsearch/elasticsearch/src/Elasticsearch/Client.php:1924)
  at Elasticsearch\Client->performRequest()
     (vendor/elasticsearch/elasticsearch/src/Elasticsearch/Client.php:1353)
  at Elasticsearch\Client->search()
     (vendor/handcraftedinthealps/elasticsearch-bundle/Service/Manager.php:305)
  at ONGR\ElasticsearchBundle\Service\Manager->search()
     (vendor/handcraftedinthealps/elasticsearch-bundle/Service/Repository.php:289)
  at ONGR\ElasticsearchBundle\Service\Repository->executeSearch()
     (vendor/handcraftedinthealps/elasticsearch-bundle/Service/Repository.php:234)
  at ONGR\ElasticsearchBundle\Service\Repository->findDocuments()
     (vendor/sulu/article-bundle/Content/ArticleDataProvider.php:323)
  at Sulu\Bundle\ArticleBundle\Content\ArticleDataProvider->getSearchResult()
     (vendor/sulu/article-bundle/Content/ArticleDataProvider.php:214)
  at Sulu\Bundle\ArticleBundle\Content\ArticleDataProvider->resolveResourceItems()
     (vendor/sulu/sulu/src/Sulu/Component/SmartContent/ContentType.php:237)
  at Sulu\Component\SmartContent\ContentType->getContentData()
     (vendor/sulu/sulu/src/Sulu/Component/SmartContent/ContentType.php:273)
  at Sulu\Component\SmartContent\ContentType->getViewData()
     (vendor/sulu/sulu/src/Sulu/Component/Content/Types/BlockContentType.php:342)
  at Sulu\Component\Content\Types\BlockContentType->Sulu\Component\Content\Types\{closure}()
     (vendor/sulu/sulu/src/Sulu/Component/Content/Types/BlockContentType.php:404)
  at Sulu\Component\Content\Types\BlockContentType->prepareData()
     (vendor/sulu/sulu/src/Sulu/Component/Content/Types/BlockContentType.php:339)
  at Sulu\Component\Content\Types\BlockContentType->getViewData()
     (vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Resolver/StructureResolver.php:134)
  at Sulu\Bundle\WebsiteBundle\Resolver\StructureResolver->resolve()
     (vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Resolver/ParameterResolver.php:83)
  at Sulu\Bundle\WebsiteBundle\Resolver\ParameterResolver->resolve()
     (vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Controller/WebsiteController.php:110)
  at Sulu\Bundle\WebsiteBundle\Controller\WebsiteController->getAttributes()
     (vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Controller/WebsiteController.php:61)
  at Sulu\Bundle\WebsiteBundle\Controller\WebsiteController->renderStructure()
     (vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Controller/DefaultController.php:33)
  at Sulu\Bundle\WebsiteBundle\Controller\DefaultController->indexAction()
     (vendor/symfony/http-kernel/HttpKernel.php:183)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:182)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:69)