https://pqna.preprod.seven-group.com/fr/ressources/guides-et-outils

Exceptions

{"error":{"root_cause":[{"type":"index_not_found_exception","reason":"no such index [pqna-preprod_articles_live]","resource.type":"index_or_alias","resource.id":"pqna-preprod_articles_live","index_uuid":"_na_","index":"pqna-preprod_articles_live"}],"type":"index_not_found_exception","reason":"no such index [pqna-preprod_articles_live]","resource.type":"index_or_alias","resource.id":"pqna-preprod_articles_live","index_uuid":"_na_","index":"pqna-preprod_articles_live"},"status":404}

Exception

Elasticsearch\Common\Exceptions\ Missing404Exception

  1.         if ($statusCode === 401) {
  2.             $exception = new Unauthorized401Exception($responseBody$statusCode);
  3.         } elseif ($statusCode === 403) {
  4.             $exception = new Forbidden403Exception($responseBody$statusCode);
  5.         } elseif ($statusCode === 404) {
  6.             $exception = new Missing404Exception($responseBody$statusCode);
  7.         } elseif ($statusCode === 409) {
  8.             $exception = new Conflict409Exception($responseBody$statusCode);
  9.         } elseif ($statusCode === 400 && strpos($responseBody'script_lang not supported') !== false) {
  10.             $exception = new ScriptLangNotSupportedException($responseBody$statusCode);
  11.         } elseif ($statusCode === 408) {
  1.                             // Skip 404 if succeeded true in the body (e.g. clear_scroll)
  2.                             $body $response['body'] ?? '';
  3.                             if (strpos($body'"succeeded":true') !== false) {
  4.                                  $ignore[] = 404;
  5.                             }
  6.                             $this->process4xxError($request$response$ignore);
  7.                         } elseif ($response['status'] >= 500) {
  8.                             $ignore $request['client']['ignore'] ?? [];
  9.                             $this->process5xxError($request$response$ignore);
  10.                         }
in vendor/react/promise/src/FulfilledPromise.php -> Elasticsearch\Connections\{closure} (line 28)
  1.         if (null === $onFulfilled) {
  2.             return $this;
  3.         }
  4.         try {
  5.             return resolve($onFulfilled($this->value));
  6.         } catch (\Throwable $exception) {
  7.             return new RejectedPromise($exception);
  8.         } catch (\Exception $exception) {
  9.             return new RejectedPromise($exception);
  10.         }
  1.     public function then(
  2.         callable $onFulfilled null,
  3.         callable $onRejected null,
  4.         callable $onProgress null
  5.     ) {
  6.         return $this->promise()->then($onFulfilled$onRejected$onProgress);
  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.                         $response['body'] = $this->serializer->deserialize($response['body'], $response['transfer_stats']);
  2.                     }
  3.                     $this->logRequestSuccess($request$response);
  4.                     return isset($request['client']['verbose']) && $request['client']['verbose'] === true $response $response['body'];
  5.                 }
  6.             );
  7.             return $response;
  8.         };
  9.     }
  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,
  10.             $this
  1.         $promise =  $this->transport->performRequest(
  2.             $endpoint->getMethod(),
  3.             $endpoint->getURI(),
  4.             $endpoint->getParams(),
  5.             $endpoint->getBody(),
  6.             $endpoint->getOptions()
  7.         );
  8.         return $this->transport->resultOrFuture($promise$endpoint->getOptions());
  9.     }
  10. }
  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.             $segmentQuery->add($noSegmentQueryBoolQuery::SHOULD);
  2.             $search->addQuery($segmentQuery);
  3.         }
  4.         return $repository->findDocuments($search);
  5.     }
  6.     /**
  7.      * Initialize search with neccesary queries.
  8.      */
  1.         $filters['types'] = $this->getTypesProperty($propertyParameter);
  2.         $filters['excluded'] = $this->getExcludedFilter($filters$propertyParameter);
  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.             $data $provider->resolveResourceItems(
  2.                 $filters,
  3.                 $params,
  4.                 $options,
  5.                 !empty($limit) ? \intval($limit) : null,
  6.                 1
  7.             );
  8.         }
  9.         // append view data
  10.         $filters['page'] = $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 425)
  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.         return $this->prepareData(
  2.             $property,
  3.             function(ContentTypeInterface $contentType$property) {
  4.                 return $contentType->getViewData($property);
  5.             },
  6.             false
  7.         );
  8.     }
  9.     public function getContentData(PropertyInterface $property)
  10.     {
  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.      * @return mixed[]
  2.      */
  3.     protected function getAttributes($attributesStructureInterface $structure null$preview false)
  4.     {
  5.         return $this->get('sulu_website.resolver.parameter')->resolve(
  6.             $attributes,
  7.             $this->get('sulu_core.webspace.request_analyzer'),
  8.             $structure,
  9.             $preview
  10.         );
  11.     }
  1.                 \sprintf('Page does not exist in "%s" format.'$requestFormat)
  2.             );
  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->renderBlock(
  9.                 $viewTemplate,
  1.      * @return Response
  2.      */
  3.     public function indexAction(StructureInterface $structure$preview false$partial false)
  4.     {
  5.         $response $this->renderStructure(
  6.             $structure,
  7.             [],
  8.             $preview,
  9.             $partial
  10.         );
in vendor/symfony/http-kernel/HttpKernel.php -> indexAction (line 163)
  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);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  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(object(Request)) in public/index.php (line 66)
  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/3.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 21:37:53 deprecation User Deprecated: Since symfony/security-core 5.4: Not setting the 5th argument of "Symfony\Component\Security\Core\Authorization\AuthorizationChecker::__construct" to "false" is deprecated.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\MessageDigestPasswordEncoder" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\MessageDigestPasswordHasher" instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\BasePasswordEncoder" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\CheckPasswordLengthTrait" instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\PasswordEncoderInterface" class is deprecated, use "Symfony\Component\PasswordHasher\PasswordHasherInterface" instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/framework-bundle 5.1: The "session.flash_bag" service is deprecated, use "$session->getFlashBag()" instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "sulu_security.encoder_factory" service is deprecated, use "security.password_hasher_factory" instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\EncoderFactory" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\PasswordHasherFactory" instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\EncoderFactoryInterface" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\PasswordHasherFactoryInterface" instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead.
{
    "exception": {}
}
INFO 21:37:53 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "1b6c9b"
    },
    "request_uri": "https://pqna.preprod.seven-group.com/_profiler/1b6c9b?panel=exception",
    "method": "GET"
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-http 5.4: The "Symfony\Component\Security\Http\EntryPoint\FormAuthenticationEntryPoint" class is deprecated, use the new security system with "Symfony\Component\Security\Http\Authenticator\FormLoginAuthenticator" instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-http 5.4: The "Symfony\Component\Security\Http\RememberMe\RememberMeServicesInterface" interface is deprecated, use "Symfony\Component\Security\Http\RememberMe\RememberMeHandlerInterface" instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-http 5.4: The "Symfony\Component\Security\Http\RememberMe\AbstractRememberMeServices" class is deprecated, use "Symfony\Component\Security\Http\RememberMe\AbstractRememberMeHandler" instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-http 5.4: The "Symfony\Component\Security\Http\RememberMe\TokenBasedRememberMeServices" class is deprecated, use "Symfony\Component\Security\Http\RememberMe\SignatureRememberMeHandler" instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-http 5.4: Method "Symfony\Component\Security\Http\Firewall\ContextListener::setRememberMeServices()" is deprecated, use the new remember me handlers instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.form.pqna" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.manager" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\AuthenticationProviderManager" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Event\AuthenticationFailureEvent" class is deprecated, use "Symfony\Component\Security\Http\Event\LoginFailureEvent" with the new authenticator system instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\UsernamePasswordFormAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\AbstractAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.rememberme.pqna" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\RememberMeListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.anonymous.pqna" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\AnonymousAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-http 5.4: The $authManager argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" is deprecated.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-http 5.4: Not setting the $exceptionOnNoToken argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" to "false" is deprecated.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-core 5.4: The "Symfony\Component\Security\Core\Authentication\Token\AnonymousToken" class is deprecated.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-core 5.4: Using an object that is not an instance of "Symfony\Component\Security\Core\User\UserInterface" as $user in "Symfony\Component\Security\Core\Authentication\Token\AnonymousToken" is deprecated.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.dao.pqna" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\DaoAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\UserAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\AuthenticationProviderInterface" interface is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.rememberme.pqna" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\RememberMeAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.anonymous.pqna" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\AnonymousAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 21:37:53 security Populated the TokenStorage with an anonymous Token.
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\Routing\RequestListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\Routing\\RequestListener::onRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Sulu\Bundle\SecurityBundle\EventListener\SystemListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SystemListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\TranslatorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\TranslatorListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Sulu\Bundle\FormBundle\Event\RequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\FormBundle\\Event\\RequestListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "App\Event\PqnaRoutesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\Event\\PqnaRoutesListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Sulu\Bundle\FormBundle\Event\ProtectedMediaSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\FormBundle\\Event\\ProtectedMediaSubscriber::onRequest"
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/security-bundle 5.4: Setting the $authenticatorManagerEnabled argument of "Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector::__construct" to "false" is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
DEBUG 21:37:53 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 21:37:53 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 21:37:53 event Notified event "kernel.controller" to listener "Sulu\Bundle\SecurityBundle\EventListener\SuluSecurityListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SuluSecurityListener::onKernelController"
}
DEBUG 21:37:53 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"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\Routing\RequestListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\Routing\\RequestListener::onRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Sulu\Bundle\SecurityBundle\EventListener\SystemListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SystemListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\TranslatorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\TranslatorListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Sulu\Bundle\FormBundle\Event\RequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\FormBundle\\Event\\RequestListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "App\Event\PqnaRoutesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\Event\\PqnaRoutesListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Sulu\Bundle\FormBundle\Event\ProtectedMediaSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\FormBundle\\Event\\ProtectedMediaSubscriber::onRequest"
}
DEBUG 21:37:53 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 21:37:53 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 21:37:53 event Notified event "kernel.controller" to listener "Sulu\Bundle\SecurityBundle\EventListener\SuluSecurityListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SuluSecurityListener::onKernelController"
}
DEBUG 21:37:53 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 21:37:53 deprecation User Deprecated: Class "Nyholm\Psr7\Factory\HttplugFactory" is deprecated since version 1.8, use "Nyholm\Psr7\Factory\Psr17Factory" instead.
{
    "exception": {}
}
INFO 21:37:53 deprecation User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Sulu\Bundle\FormBundle\Event\RequestListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sulu\\Bundle\\FormBundle\\Event\\RequestListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "App\Event\PqnaRoutesListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "App\\Event\\PqnaRoutesListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "FOS\RestBundle\EventListener\ResponseStatusCodeListener::setResponseStatusCode".
{
    "event": "kernel.response",
    "listener": "FOS\\RestBundle\\EventListener\\ResponseStatusCodeListener::setResponseStatusCode"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventSubscriber\GeneratorEventSubscriber::onResponse".
{
    "event": "kernel.response",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventSubscriber\\GeneratorEventSubscriber::onResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventListener\SegmentSubscriber::addVaryHeader".
{
    "event": "kernel.response",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\SegmentSubscriber::addVaryHeader"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventListener\SegmentSubscriber::addCookieHeader".
{
    "event": "kernel.response",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\SegmentSubscriber::addCookieHeader"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventListener\AppendAnalyticsListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\AppendAnalyticsListener::onResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Sulu\Bundle\MarkupBundle\Listener\MarkupListener::replaceMarkup".
{
    "event": "kernel.response",
    "listener": "Sulu\\Bundle\\MarkupBundle\\Listener\\MarkupListener::replaceMarkup"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 21:37:53 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
DEBUG 21:37:53 event Notified event "kernel.finish_request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 21:37:53 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 21:37:53 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 21:37:53 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\Routing\RequestListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\Routing\\RequestListener::onRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Sulu\Bundle\SecurityBundle\EventListener\SystemListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SystemListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\TranslatorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\TranslatorListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Sulu\Bundle\FormBundle\Event\RequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\FormBundle\\Event\\RequestListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "App\Event\PqnaRoutesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\Event\\PqnaRoutesListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Sulu\Bundle\FormBundle\Event\ProtectedMediaSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\FormBundle\\Event\\ProtectedMediaSubscriber::onRequest"
}
DEBUG 21:37:53 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 21:37:53 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 21:37:53 event Notified event "kernel.controller" to listener "Sulu\Bundle\SecurityBundle\EventListener\SuluSecurityListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SuluSecurityListener::onKernelController"
}
DEBUG 21:37:53 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 21:37:53 deprecation User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Sulu\Bundle\FormBundle\Event\RequestListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sulu\\Bundle\\FormBundle\\Event\\RequestListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "App\Event\PqnaRoutesListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "App\\Event\\PqnaRoutesListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "FOS\RestBundle\EventListener\ResponseStatusCodeListener::setResponseStatusCode".
{
    "event": "kernel.response",
    "listener": "FOS\\RestBundle\\EventListener\\ResponseStatusCodeListener::setResponseStatusCode"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventSubscriber\GeneratorEventSubscriber::onResponse".
{
    "event": "kernel.response",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventSubscriber\\GeneratorEventSubscriber::onResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventListener\SegmentSubscriber::addVaryHeader".
{
    "event": "kernel.response",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\SegmentSubscriber::addVaryHeader"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventListener\SegmentSubscriber::addCookieHeader".
{
    "event": "kernel.response",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\SegmentSubscriber::addCookieHeader"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventListener\AppendAnalyticsListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\AppendAnalyticsListener::onResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Sulu\Bundle\MarkupBundle\Listener\MarkupListener::replaceMarkup".
{
    "event": "kernel.response",
    "listener": "Sulu\\Bundle\\MarkupBundle\\Listener\\MarkupListener::replaceMarkup"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 21:37:53 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 21:37:53 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
DEBUG 21:37:53 event Notified event "kernel.finish_request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 21:37:53 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 21:37:53 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 21:37:53 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\Routing\RequestListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\Routing\\RequestListener::onRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Sulu\Bundle\SecurityBundle\EventListener\SystemListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SystemListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\TranslatorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\TranslatorListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Sulu\Bundle\FormBundle\Event\RequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\FormBundle\\Event\\RequestListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "App\Event\PqnaRoutesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\Event\\PqnaRoutesListener::onKernelRequest"
}
DEBUG 21:37:53 event Notified event "kernel.request" to listener "Sulu\Bundle\FormBundle\Event\ProtectedMediaSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\FormBundle\\Event\\ProtectedMediaSubscriber::onRequest"
}
DEBUG 21:37:53 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 21:37:53 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 21:37:53 event Notified event "kernel.controller" to listener "Sulu\Bundle\SecurityBundle\EventListener\SuluSecurityListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SuluSecurityListener::onKernelController"
}
DEBUG 21:37:53 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"
}

Stack Trace

Missing404Exception
Elasticsearch\Common\Exceptions\Missing404Exception:
{"error":{"root_cause":[{"type":"index_not_found_exception","reason":"no such index [pqna-preprod_articles_live]","resource.type":"index_or_alias","resource.id":"pqna-preprod_articles_live","index_uuid":"_na_","index":"pqna-preprod_articles_live"}],"type":"index_not_found_exception","reason":"no such index [pqna-preprod_articles_live]","resource.type":"index_or_alias","resource.id":"pqna-preprod_articles_live","index_uuid":"_na_","index":"pqna-preprod_articles_live"},"status":404}

  at vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/Connection.php:685
  at Elasticsearch\Connections\Connection->process4xxError(array('http_method' => 'POST', 'scheme' => 'http', 'uri' => '/pqna-preprod_articles_live/article/_search', 'body' => '{"query":{"bool":{"must_not":[{"term":{"uuid":"c1274e20-5e84-4416-b359-b88322a30a3d"}}],"must":[{"term":{"locale":"fr"}},{"bool":{"should":[{"term":{"structure_type":"guides_outils"}}]}},{"match_all":{}},{"bool":{"should":[{"term":{"main_webspace":"pqna"}},{"term":{"additional_webspaces":"pqna"}}]}}]}},"sort":[{"published":{"order":"asc"}}],"from":0,"size":250}', 'headers' => array('Host' => array('elasticsearch.sulu-7g.svc.cluster.local'), 'Accept' => array('application/vnd.elasticsearch+json;compatible-with=7'), 'Content-Type' => array('application/vnd.elasticsearch+json;compatible-with=7'), 'User-Agent' => array('elasticsearch-php/7.17.1 (Linux 5.15.0-152-generic; PHP 7.4.33)'), 'x-elastic-client-meta' => array('es=7.17.1,php=7.4.33,t=7.17.1,a=0,cu=7.74.0')), 'client' => array('x-elastic-client-meta' => true, 'port_in_header' => false, 'curl' => array(9200))), array('transfer_stats' => array('url' => 'http://elasticsearch.sulu-7g.svc.cluster.local/pqna-preprod_articles_live/article/_search', 'content_type' => 'application/json; charset=UTF-8', 'http_code' => 404, 'header_size' => 590, 'request_size' => 767, 'filetime' => -1, 'ssl_verify_result' => 0, 'redirect_count' => 0, 'total_time' => 0.030266, 'namelookup_time' => 0.00702, 'connect_time' => 0.008316, 'pretransfer_time' => 0.008529, 'size_upload' => 363.0, 'size_download' => 485.0, 'speed_download' => 16166.0, 'speed_upload' => 12100.0, 'download_content_length' => 485.0, 'upload_content_length' => 363.0, 'starttransfer_time' => 0.030169, 'redirect_time' => 0.0, 'redirect_url' => '', 'primary_ip' => '10.3.241.111', 'certinfo' => array(), 'primary_port' => 9200, 'local_ip' => '10.2.4.180', 'local_port' => 60104, 'http_version' => 2, 'protocol' => 1, 'ssl_verifyresult' => 0, 'scheme' => 'HTTP', 'appconnect_time_us' => 0, 'connect_time_us' => 8316, 'namelookup_time_us' => 7020, 'pretransfer_time_us' => 8529, 'redirect_time_us' => 0, 'starttransfer_time_us' => 30169, 'total_time_us' => 30266, 'error' => '', 'errno' => 0), 'curl' => array('error' => '', 'errno' => 0), 'effective_url' => 'http://elasticsearch.sulu-7g.svc.cluster.local/pqna-preprod_articles_live/article/_search', 'headers' => array('X-elastic-product' => array('Elasticsearch'), 'Warning' => array('299 Elasticsearch-7.14.0-dd5a0a2acaa2045ff9624f3729fc8a6f40835aa1 "Elasticsearch built-in security features are not enabled. Without authentication, your cluster could be accessible to anyone. See https://www.elastic.co/guide/en/elasticsearch/reference/7.14/security-minimal-setup.html to enable security."', '299 Elasticsearch-7.14.0-dd5a0a2acaa2045ff9624f3729fc8a6f40835aa1 "[types removal] Specifying types in search requests is deprecated."'), 'content-type' => array('application/json; charset=UTF-8'), 'content-length' => array('485')), 'version' => '1.1', 'status' => 404, 'reason' => 'Not Found', 'body' => '{"error":{"root_cause":[{"type":"index_not_found_exception","reason":"no such index [pqna-preprod_articles_live]","resource.type":"index_or_alias","resource.id":"pqna-preprod_articles_live","index_uuid":"_na_","index":"pqna-preprod_articles_live"}],"type":"index_not_found_exception","reason":"no such index [pqna-preprod_articles_live]","resource.type":"index_or_alias","resource.id":"pqna-preprod_articles_live","index_uuid":"_na_","index":"pqna-preprod_articles_live"},"status":404}'), array())
     (vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/Connection.php:333)
  at Elasticsearch\Connections\Connection->Elasticsearch\Connections\{closure}(array('transfer_stats' => array('url' => 'http://elasticsearch.sulu-7g.svc.cluster.local/pqna-preprod_articles_live/article/_search', 'content_type' => 'application/json; charset=UTF-8', 'http_code' => 404, 'header_size' => 590, 'request_size' => 767, 'filetime' => -1, 'ssl_verify_result' => 0, 'redirect_count' => 0, 'total_time' => 0.030266, 'namelookup_time' => 0.00702, 'connect_time' => 0.008316, 'pretransfer_time' => 0.008529, 'size_upload' => 363.0, 'size_download' => 485.0, 'speed_download' => 16166.0, 'speed_upload' => 12100.0, 'download_content_length' => 485.0, 'upload_content_length' => 363.0, 'starttransfer_time' => 0.030169, 'redirect_time' => 0.0, 'redirect_url' => '', 'primary_ip' => '10.3.241.111', 'certinfo' => array(), 'primary_port' => 9200, 'local_ip' => '10.2.4.180', 'local_port' => 60104, 'http_version' => 2, 'protocol' => 1, 'ssl_verifyresult' => 0, 'scheme' => 'HTTP', 'appconnect_time_us' => 0, 'connect_time_us' => 8316, 'namelookup_time_us' => 7020, 'pretransfer_time_us' => 8529, 'redirect_time_us' => 0, 'starttransfer_time_us' => 30169, 'total_time_us' => 30266, 'error' => '', 'errno' => 0), 'curl' => array('error' => '', 'errno' => 0), 'effective_url' => 'http://elasticsearch.sulu-7g.svc.cluster.local/pqna-preprod_articles_live/article/_search', 'headers' => array('X-elastic-product' => array('Elasticsearch'), 'Warning' => array('299 Elasticsearch-7.14.0-dd5a0a2acaa2045ff9624f3729fc8a6f40835aa1 "Elasticsearch built-in security features are not enabled. Without authentication, your cluster could be accessible to anyone. See https://www.elastic.co/guide/en/elasticsearch/reference/7.14/security-minimal-setup.html to enable security."', '299 Elasticsearch-7.14.0-dd5a0a2acaa2045ff9624f3729fc8a6f40835aa1 "[types removal] Specifying types in search requests is deprecated."'), 'content-type' => array('application/json; charset=UTF-8'), 'content-length' => array('485')), 'version' => '1.1', 'status' => 404, 'reason' => 'Not Found', 'body' => '{"error":{"root_cause":[{"type":"index_not_found_exception","reason":"no such index [pqna-preprod_articles_live]","resource.type":"index_or_alias","resource.id":"pqna-preprod_articles_live","index_uuid":"_na_","index":"pqna-preprod_articles_live"}],"type":"index_not_found_exception","reason":"no such index [pqna-preprod_articles_live]","resource.type":"index_or_alias","resource.id":"pqna-preprod_articles_live","index_uuid":"_na_","index":"pqna-preprod_articles_live"},"status":404}'))
     (vendor/react/promise/src/FulfilledPromise.php:28)
  at React\Promise\FulfilledPromise->then(object(Closure), null, null)
     (vendor/ezimuel/ringphp/src/Future/CompletedFutureValue.php:65)
  at GuzzleHttp\Ring\Future\CompletedFutureValue->then(object(Closure), null, null)
     (vendor/ezimuel/ringphp/src/Core.php:341)
  at GuzzleHttp\Ring\Core::proxy(object(CompletedFutureArray), object(Closure))
     (vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/Connection.php:345)
  at Elasticsearch\Connections\Connection->Elasticsearch\Connections\{closure}(array('http_method' => 'POST', 'scheme' => 'http', 'uri' => '/pqna-preprod_articles_live/article/_search', 'body' => '{"query":{"bool":{"must_not":[{"term":{"uuid":"c1274e20-5e84-4416-b359-b88322a30a3d"}}],"must":[{"term":{"locale":"fr"}},{"bool":{"should":[{"term":{"structure_type":"guides_outils"}}]}},{"match_all":{}},{"bool":{"should":[{"term":{"main_webspace":"pqna"}},{"term":{"additional_webspaces":"pqna"}}]}}]}},"sort":[{"published":{"order":"asc"}}],"from":0,"size":250}', 'headers' => array('Host' => array('elasticsearch.sulu-7g.svc.cluster.local'), 'Accept' => array('application/vnd.elasticsearch+json;compatible-with=7'), 'Content-Type' => array('application/vnd.elasticsearch+json;compatible-with=7'), 'User-Agent' => array('elasticsearch-php/7.17.1 (Linux 5.15.0-152-generic; PHP 7.4.33)'), 'x-elastic-client-meta' => array('es=7.17.1,php=7.4.33,t=7.17.1,a=0,cu=7.74.0')), 'client' => array('x-elastic-client-meta' => true, 'port_in_header' => false, 'curl' => array(9200))), object(Connection), object(Transport), array())
     (vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/Connection.php:241)
  at Elasticsearch\Connections\Connection->performRequest('POST', '/pqna-preprod_articles_live/article/_search', array(), '{"query":{"bool":{"must_not":[{"term":{"uuid":"c1274e20-5e84-4416-b359-b88322a30a3d"}}],"must":[{"term":{"locale":"fr"}},{"bool":{"should":[{"term":{"structure_type":"guides_outils"}}]}},{"match_all":{}},{"bool":{"should":[{"term":{"main_webspace":"pqna"}},{"term":{"additional_webspaces":"pqna"}}]}}]}},"sort":[{"published":{"order":"asc"}}],"from":0,"size":250}', array(), object(Transport))
     (vendor/elasticsearch/elasticsearch/src/Elasticsearch/Transport.php:110)
  at Elasticsearch\Transport->performRequest('POST', '/pqna-preprod_articles_live/article/_search', array(), array('query' => array('bool' => array('must_not' => array(array('term' => array('uuid' => 'c1274e20-5e84-4416-b359-b88322a30a3d'))), 'must' => array(array('term' => array('locale' => 'fr')), array('bool' => array('should' => array(array('term' => array('structure_type' => 'guides_outils'))))), array('match_all' => object(stdClass)), array('bool' => array('should' => array(array('term' => array('main_webspace' => 'pqna')), array('term' => array('additional_webspaces' => 'pqna')))))))), 'sort' => array(array('published' => array('order' => 'asc'))), 'from' => 0, 'size' => 250), array())
     (vendor/elasticsearch/elasticsearch/src/Elasticsearch/Client.php:1929)
  at Elasticsearch\Client->performRequest(object(Search))
     (vendor/elasticsearch/elasticsearch/src/Elasticsearch/Client.php:1353)
  at Elasticsearch\Client->search(array())
     (vendor/handcraftedinthealps/elasticsearch-bundle/Service/Manager.php:305)
  at ONGR\ElasticsearchBundle\Service\Manager->search(array('article'), array('query' => array('bool' => array('must_not' => array(array('term' => array('uuid' => 'c1274e20-5e84-4416-b359-b88322a30a3d'))), 'must' => array(array('term' => array('locale' => 'fr')), array('bool' => array('should' => array(array('term' => array('structure_type' => 'guides_outils'))))), array('match_all' => object(stdClass)), array('bool' => array('should' => array(array('term' => array('main_webspace' => 'pqna')), array('term' => array('additional_webspaces' => 'pqna')))))))), 'sort' => array(array('published' => array('order' => 'asc'))), 'from' => 0, 'size' => 250), array())
     (vendor/handcraftedinthealps/elasticsearch-bundle/Service/Repository.php:289)
  at ONGR\ElasticsearchBundle\Service\Repository->executeSearch(object(Search))
     (vendor/handcraftedinthealps/elasticsearch-bundle/Service/Repository.php:234)
  at ONGR\ElasticsearchBundle\Service\Repository->findDocuments(object(Search))
     (vendor/sulu/article-bundle/Content/ArticleDataProvider.php:301)
  at Sulu\Bundle\ArticleBundle\Content\ArticleDataProvider->getSearchResult(array('audienceTargeting' => null, 'categories' => array(), 'categoryOperator' => 'or', 'dataSource' => null, 'includeSubFolders' => null, 'limitResult' => null, 'sortBy' => 'published', 'sortMethod' => 'asc', 'tagOperator' => 'or', 'tags' => array(), 'types' => array(), 'presentAs' => null, 'excluded' => array('c1274e20-5e84-4416-b359-b88322a30a3d'), 'websiteTags' => array(), 'websiteTagsOperator' => 'OR', 'websiteCategories' => array(), 'websiteCategoriesOperator' => 'OR', 'structureTypes' => array('guides_outils')), null, 1, null, 'fr', 'pqna')
     (vendor/sulu/article-bundle/Content/ArticleDataProvider.php:200)
  at Sulu\Bundle\ArticleBundle\Content\ArticleDataProvider->resolveResourceItems(array('audienceTargeting' => null, 'categories' => array(), 'categoryOperator' => 'or', 'dataSource' => null, 'includeSubFolders' => null, 'limitResult' => null, 'sortBy' => 'published', 'sortMethod' => 'asc', 'tagOperator' => 'or', 'tags' => array(), 'types' => array(), 'presentAs' => null, 'excluded' => array('c1274e20-5e84-4416-b359-b88322a30a3d'), 'websiteTags' => array(), 'websiteTagsOperator' => 'OR', 'websiteCategories' => array(), 'websiteCategoriesOperator' => 'OR', 'structureTypes' => array('guides_outils')), array('provider' => object(PropertyParameter), 'alias' => 'article', 'page_parameter' => object(PropertyParameter), 'tags_parameter' => object(PropertyParameter), 'categories_parameter' => object(PropertyParameter), 'website_tags_operator' => object(PropertyParameter), 'website_categories_operator' => object(PropertyParameter), 'sorting' => object(PropertyParameter), 'types' => object(PropertyParameter), 'present_as' => object(PropertyParameter), 'category_root' => object(PropertyParameter), 'display_options' => object(PropertyParameter), 'has' => array('datasource' => false, 'tags' => true, 'categories' => true, 'sorting' => true, 'types' => false, 'limit' => true, 'presentAs' => true, 'audienceTargeting' => false), 'datasourceResourceKey' => null, 'datasourceAdapter' => null, 'exclude_duplicates' => object(PropertyParameter), 'type' => object(PropertyParameter), 'ignoreWebspaces' => object(PropertyParameter)), array('webspaceKey' => 'pqna', 'locale' => 'fr'), null, 1)
     (vendor/sulu/sulu/src/Sulu/Component/SmartContent/ContentType.php:304)
  at Sulu\Component\SmartContent\ContentType->getContentData(object(Property))
     (vendor/sulu/sulu/src/Sulu/Component/SmartContent/ContentType.php:326)
  at Sulu\Component\SmartContent\ContentType->getViewData(object(Property))
     (vendor/sulu/sulu/src/Sulu/Component/Content/Types/BlockContentType.php:363)
  at Sulu\Component\Content\Types\BlockContentType->Sulu\Component\Content\Types\{closure}(object(ContentType), object(Property))
     (vendor/sulu/sulu/src/Sulu/Component/Content/Types/BlockContentType.php:425)
  at Sulu\Component\Content\Types\BlockContentType->prepareData(object(BlockProperty), object(Closure), false)
     (vendor/sulu/sulu/src/Sulu/Component/Content/Types/BlockContentType.php:365)
  at Sulu\Component\Content\Types\BlockContentType->getViewData(object(BlockProperty))
     (vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Resolver/StructureResolver.php:129)
  at Sulu\Bundle\WebsiteBundle\Resolver\StructureResolver->resolve(object(PageBridge), true)
     (vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Resolver/ParameterResolver.php:83)
  at Sulu\Bundle\WebsiteBundle\Resolver\ParameterResolver->resolve(array(), object(RequestAnalyzer), object(PageBridge), false)
     (vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Controller/WebsiteController.php:115)
  at Sulu\Bundle\WebsiteBundle\Controller\WebsiteController->getAttributes(array(), object(PageBridge), false)
     (vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Controller/WebsiteController.php:65)
  at Sulu\Bundle\WebsiteBundle\Controller\WebsiteController->renderStructure(object(PageBridge), array(), false, false)
     (vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Controller/DefaultController.php:34)
  at Sulu\Bundle\WebsiteBundle\Controller\DefaultController->indexAction(object(PageBridge), false, false)
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:66)