Exceptions
Exception
Elasticsearch\Common\Exceptions\ Missing404Exception
if ($statusCode === 401) {$exception = new Unauthorized401Exception($responseBody, $statusCode);} elseif ($statusCode === 403) {$exception = new Forbidden403Exception($responseBody, $statusCode);} elseif ($statusCode === 404) {$exception = new Missing404Exception($responseBody, $statusCode);} elseif ($statusCode === 409) {$exception = new Conflict409Exception($responseBody, $statusCode);} elseif ($statusCode === 400 && strpos($responseBody, 'script_lang not supported') !== false) {$exception = new ScriptLangNotSupportedException($responseBody. $statusCode);} elseif ($statusCode === 408) {
in
vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/Connection.php
->
process4xxError
(line 333)
// Skip 404 if succeeded true in the body (e.g. clear_scroll)$body = $response['body'] ?? '';if (strpos($body, '"succeeded":true') !== false) {$ignore[] = 404;}$this->process4xxError($request, $response, $ignore);} elseif ($response['status'] >= 500) {$ignore = $request['client']['ignore'] ?? [];$this->process5xxError($request, $response, $ignore);}
in
vendor/react/promise/src/FulfilledPromise.php
->
Elasticsearch\Connections\{closure}
(line 28)
if (null === $onFulfilled) {return $this;}try {return resolve($onFulfilled($this->value));} catch (\Throwable $exception) {return new RejectedPromise($exception);} catch (\Exception $exception) {return new RejectedPromise($exception);}
in
vendor/ezimuel/ringphp/src/Future/CompletedFutureValue.php
->
then
(line 65)
public function then(callable $onFulfilled = null,callable $onRejected = null,callable $onProgress = null) {return $this->promise()->then($onFulfilled, $onRejected, $onProgress);}}
in
vendor/ezimuel/ringphp/src/Core.php
->
then
(line 341)
callable $onFulfilled = null,callable $onRejected = null,callable $onProgress = null) {return new FutureArray($future->then($onFulfilled, $onRejected, $onProgress),[$future, 'wait'],[$future, 'cancel']);}
in
vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/Connection.php
::
proxy
(line 345)
$response['body'] = $this->serializer->deserialize($response['body'], $response['transfer_stats']);}$this->logRequestSuccess($request, $response);return isset($request['client']['verbose']) && $request['client']['verbose'] === true ? $response : $response['body'];});return $response;};}
in
vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/Connection.php
->
Elasticsearch\Connections\{closure}
(line 241)
if (empty($request['client'])) {unset($request['client']);}$handler = $this->handler;$future = $handler($request, $this, $transport, $options);return $future;}public function getTransportSchema(): string
in
vendor/elasticsearch/elasticsearch/src/Elasticsearch/Transport.php
->
performRequest
(line 110)
$response = [];$caughtException = null;$this->lastConnection = $connection;$future = $connection->performRequest($method,$uri,$params,$body,$options,$this
in
vendor/elasticsearch/elasticsearch/src/Elasticsearch/Client.php
->
performRequest
(line 1929)
$promise = $this->transport->performRequest($endpoint->getMethod(),$endpoint->getURI(),$endpoint->getParams(),$endpoint->getBody(),$endpoint->getOptions());return $this->transport->resultOrFuture($promise, $endpoint->getOptions());}}
in
vendor/elasticsearch/elasticsearch/src/Elasticsearch/Client.php
->
performRequest
(line 1353)
$endpoint->setParams($params);$endpoint->setIndex($index);$endpoint->setType($type);$endpoint->setBody($body);return $this->performRequest($endpoint);}/*** Searches a vector tile for geospatial values. Returns results as a binary Mapbox vector tile.** $params['index'] = (list) Comma-separated list of data streams, indices, or aliases to search
in
vendor/handcraftedinthealps/elasticsearch-bundle/Service/Manager.php
->
search
(line 305)
if (!empty($queryStringParams)) {$params = array_merge($queryStringParams, $params);}$this->stopwatch('start', 'search');$result = $this->client->search($params);$this->stopwatch('stop', 'search');return $result;}
in
vendor/handcraftedinthealps/elasticsearch-bundle/Service/Repository.php
->
search
(line 289)
** @return array*/private function executeSearch(Search $search){return $this->getManager()->search([$this->getType()], $search->toArray(), $search->getUriParams());}/*** Counts documents by given search.*
in
vendor/handcraftedinthealps/elasticsearch-bundle/Service/Repository.php
->
executeSearch
(line 234)
** @return DocumentIterator*/public function findDocuments(Search $search){$results = $this->executeSearch($search);return new DocumentIterator($results,$this->getManager(),$this->getScrollConfiguration($results, $search->getScroll())
in
vendor/sulu/article-bundle/Content/ArticleDataProvider.php
->
findDocuments
(line 301)
$segmentQuery->add($noSegmentQuery, BoolQuery::SHOULD);$search->addQuery($segmentQuery);}return $repository->findDocuments($search);}/*** Initialize search with neccesary queries.*/
in
vendor/sulu/article-bundle/Content/ArticleDataProvider.php
->
getSearchResult
(line 200)
$filters['types'] = $this->getTypesProperty($propertyParameter);$filters['excluded'] = $this->getExcludedFilter($filters, $propertyParameter);$locale = $options['locale'];$webspaceKey = $this->getWebspaceKey($propertyParameter, $options);$queryResult = $this->getSearchResult($filters, $limit, $page, $pageSize, $locale, $webspaceKey);$result = [];/** @var ArticleViewDocumentInterface $document */foreach ($queryResult as $document) {$this->referenceStore->add($document->getUuid());
in
vendor/sulu/sulu/src/Sulu/Component/SmartContent/ContentType.php
->
resolveResourceItems
(line 304)
$data = $provider->resolveResourceItems($filters,$params,$options,!empty($limit) ? \intval($limit) : null,1);}// append view data$filters['page'] = $page;
in
vendor/sulu/sulu/src/Sulu/Component/SmartContent/ContentType.php
->
getContentData
(line 326)
$params = \array_merge($this->getDefaultParams($property),$property->getParams());$this->getContentData($property);$config = $property->getValue();$config = \array_merge(['dataSource' => null,
in
vendor/sulu/sulu/src/Sulu/Component/Content/Types/BlockContentType.php
->
getViewData
(line 363)
public function getViewData(PropertyInterface $property){return $this->prepareData($property,function(ContentTypeInterface $contentType, $property) {return $contentType->getViewData($property);},false);}
in
vendor/sulu/sulu/src/Sulu/Component/Content/Types/BlockContentType.php
->
Sulu\Component\Content\Types\{closure}
(line 425)
$blockData['settings'] = $blockPropertyTypeSettings;}foreach ($blockPropertyType->getChildProperties() as $childProperty) {$contentType = $this->contentTypeManager->get($childProperty->getContentTypeName());$blockData[$childProperty->getName()] = $dataCallback($contentType, $childProperty);}$data[] = $blockData;}
in
vendor/sulu/sulu/src/Sulu/Component/Content/Types/BlockContentType.php
->
prepareData
(line 365)
return $this->prepareData($property,function(ContentTypeInterface $contentType, $property) {return $contentType->getViewData($property);},false);}public function getContentData(PropertyInterface $property){
in
vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Resolver/StructureResolver.php
->
getViewData
(line 129)
}foreach ($structure->getProperties(true) as $property) {if (null === $includedProperties || \in_array($property->getName(), $includedProperties)) {$contentType = $this->contentTypeManager->get($property->getContentTypeName());$data['view'][$property->getName()] = $contentType->getViewData($property);$data['content'][$property->getName()] = $contentType->getContentData($property);}}return $data;
in
vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Resolver/ParameterResolver.php
->
resolve
(line 83)
RequestAnalyzerInterface $requestAnalyzer = null,StructureInterface $structure = null,$preview = false) {if (null !== $structure) {$structureData = $this->structureResolver->resolve($structure, true);} else {$structureData = [];}if (!$requestAnalyzer) {
in
vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Controller/WebsiteController.php
->
resolve
(line 115)
* @return mixed[]*/protected function getAttributes($attributes, StructureInterface $structure = null, $preview = false){return $this->get('sulu_website.resolver.parameter')->resolve($attributes,$this->get('sulu_core.webspace.request_analyzer'),$structure,$preview);}
in
vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Controller/WebsiteController.php
->
getAttributes
(line 65)
\sprintf('Page does not exist in "%s" format.', $requestFormat));}// get attributes to render template$data = $this->getAttributes($attributes, $structure, $preview);// if partial render only content block else full pageif ($partial) {$content = $this->renderBlock($viewTemplate,
in
vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Controller/DefaultController.php
->
renderStructure
(line 34)
* @return Response*/public function indexAction(StructureInterface $structure, $preview = false, $partial = false){$response = $this->renderStructure($structure,[],$preview,$partial);
in
vendor/symfony/http-kernel/HttpKernel.php
->
indexAction
(line 163)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);try {return $this->handleRaw($request, $type);} catch (\Exception $e) {if ($e instanceof RequestExceptionInterface) {$e = new BadRequestHttpException($e->getMessage(), $e);}if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
// When using the HttpCache, you need to call the method in your front controller// instead of relying on the configuration parameter// https://symfony.com/doc/3.4/reference/configuration/framework.html#http-method-overrideRequest::enableHttpMethodParameterOverride();$request = Request::createFromGlobals();$response = $kernel->handle($request);$response->send();$kernel->terminate($request, $response);
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 21:37:55 | 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:55 | 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:55 | 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:55 | 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:55 | deprecation |
User Deprecated: Since symfony/framework-bundle 5.1: The "session.flash_bag" service is deprecated, use "$session->getFlashBag()" instead. {
"exception": {}
}
|
| INFO 21:37:55 | 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:55 | 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:55 | 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:55 | deprecation |
User Deprecated: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 21:37:55 | deprecation |
User Deprecated: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 21:37:55 | deprecation |
User Deprecated: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. {
"exception": {}
}
|
| INFO 21:37:55 | deprecation |
User Deprecated: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. {
"exception": {}
}
|
| INFO 21:37:55 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "01cd8e"
},
"request_uri": "https://pqna.preprod.seven-group.com/_profiler/01cd8e",
"method": "GET"
}
|
| INFO 21:37:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | deprecation |
User Deprecated: Since symfony/security-core 5.4: The "Symfony\Component\Security\Core\Authentication\Token\AnonymousToken" class is deprecated. {
"exception": {}
}
|
| INFO 21:37:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | security | Populated the TokenStorage with an anonymous Token. |
| DEBUG 21:37:55 | 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:55 | 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:55 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest"
}
|
| DEBUG 21:37:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
|
| DEBUG 21:37:55 | 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:55 | 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:55 | 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:55 | event |
Notified event "kernel.request" to listener "App\Event\PqnaRoutesListener::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\Event\\PqnaRoutesListener::onKernelRequest"
}
|
| DEBUG 21:37:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest"
}
|
| DEBUG 21:37:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
|
| DEBUG 21:37:55 | 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:55 | 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:55 | 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:55 | event |
Notified event "kernel.request" to listener "App\Event\PqnaRoutesListener::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\Event\\PqnaRoutesListener::onKernelRequest"
}
|
| DEBUG 21:37:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | deprecation |
User Deprecated: Class "Nyholm\Psr7\Factory\HttplugFactory" is deprecated since version 1.8, use "Nyholm\Psr7\Factory\Psr17Factory" instead. {
"exception": {}
}
|
| INFO 21:37:55 | deprecation |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| DEBUG 21:37:55 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse". {
"event": "kernel.response",
"listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse"
}
|
| DEBUG 21:37:55 | 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:55 | event |
Notified event "kernel.response" to listener "App\Event\PqnaRoutesListener::onKernelResponse". {
"event": "kernel.response",
"listener": "App\\Event\\PqnaRoutesListener::onKernelResponse"
}
|
| DEBUG 21:37:55 | 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:55 | 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:55 | 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:55 | 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:55 | event |
Notified event "kernel.response" to listener "FOS\RestBundle\EventListener\ResponseStatusCodeListener::setResponseStatusCode". {
"event": "kernel.response",
"listener": "FOS\\RestBundle\\EventListener\\ResponseStatusCodeListener::setResponseStatusCode"
}
|
| DEBUG 21:37:55 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse". {
"event": "kernel.response",
"listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse"
}
|
| DEBUG 21:37:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest"
}
|
| DEBUG 21:37:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
|
| DEBUG 21:37:55 | 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:55 | 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:55 | 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:55 | event |
Notified event "kernel.request" to listener "App\Event\PqnaRoutesListener::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\Event\\PqnaRoutesListener::onKernelRequest"
}
|
| DEBUG 21:37:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | deprecation |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| DEBUG 21:37:55 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse". {
"event": "kernel.response",
"listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse"
}
|
| DEBUG 21:37:55 | 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:55 | event |
Notified event "kernel.response" to listener "App\Event\PqnaRoutesListener::onKernelResponse". {
"event": "kernel.response",
"listener": "App\\Event\\PqnaRoutesListener::onKernelResponse"
}
|
| DEBUG 21:37:55 | 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:55 | 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:55 | 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:55 | 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:55 | event |
Notified event "kernel.response" to listener "FOS\RestBundle\EventListener\ResponseStatusCodeListener::setResponseStatusCode". {
"event": "kernel.response",
"listener": "FOS\\RestBundle\\EventListener\\ResponseStatusCodeListener::setResponseStatusCode"
}
|
| DEBUG 21:37:55 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse". {
"event": "kernel.response",
"listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse"
}
|
| DEBUG 21:37:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest"
}
|
| DEBUG 21:37:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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:55 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
|
| DEBUG 21:37:55 | 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:55 | 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:55 | 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:55 | event |
Notified event "kernel.request" to listener "App\Event\PqnaRoutesListener::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\Event\\PqnaRoutesListener::onKernelRequest"
}
|
| DEBUG 21:37:55 | 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:55 | 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:55 | 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:55 | 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:55 | 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.026224, 'namelookup_time' => 0.006639, 'connect_time' => 0.008273, 'pretransfer_time' => 0.008447, 'size_upload' => 363.0, 'size_download' => 485.0, 'speed_download' => 18653.0, 'speed_upload' => 13961.0, 'download_content_length' => 485.0, 'upload_content_length' => 363.0, 'starttransfer_time' => 0.026129, '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' => 41986, 'http_version' => 2, 'protocol' => 1, 'ssl_verifyresult' => 0, 'scheme' => 'HTTP', 'appconnect_time_us' => 0, 'connect_time_us' => 8273, 'namelookup_time_us' => 6639, 'pretransfer_time_us' => 8447, 'redirect_time_us' => 0, 'starttransfer_time_us' => 26129, 'total_time_us' => 26224, '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.026224, 'namelookup_time' => 0.006639, 'connect_time' => 0.008273, 'pretransfer_time' => 0.008447, 'size_upload' => 363.0, 'size_download' => 485.0, 'speed_download' => 18653.0, 'speed_upload' => 13961.0, 'download_content_length' => 485.0, 'upload_content_length' => 363.0, 'starttransfer_time' => 0.026129, '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' => 41986, 'http_version' => 2, 'protocol' => 1, 'ssl_verifyresult' => 0, 'scheme' => 'HTTP', 'appconnect_time_us' => 0, 'connect_time_us' => 8273, 'namelookup_time_us' => 6639, 'pretransfer_time_us' => 8447, 'redirect_time_us' => 0, 'starttransfer_time_us' => 26129, 'total_time_us' => 26224, '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)
|