Exceptions
Exception
Elasticsearch\Common\Exceptions\ NoNodesAvailableException
in
vendor/elasticsearch/elasticsearch/src/Elasticsearch/ConnectionPool/StaticNoPingConnectionPool.php
(line 64)
if ($this->readyToRevive($connection) === true) {return $connection;}}throw new NoNodesAvailableException("No alive nodes found in your cluster");}public function scheduleCheck(): void{}
in
vendor/elasticsearch/elasticsearch/src/Elasticsearch/Transport.php
->
nextConnection
(line 82)
* Returns a single connection from the connection pool* Potentially performs a sniffing step before returning*/public function getConnection(): ConnectionInterface{return $this->connectionPool->nextConnection();}/*** Perform a request to the Cluster*
in
vendor/elasticsearch/elasticsearch/src/Elasticsearch/Transport.php
->
getConnection
(line 99)
* @throws Common\Exceptions\NoNodesAvailableException|\Exception*/public function performRequest(string $method, string $uri, array $params = [], $body = null, array $options = []): FutureArrayInterface{try {$connection = $this->getConnection();} catch (Exceptions\NoNodesAvailableException $exception) {$this->log->critical('No alive nodes found in cluster');throw $exception;}
in
vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/Connection.php
->
performRequest
(line 296)
$shouldRetry = $transport->shouldRetry($request);$shouldRetryText = ($shouldRetry) ? 'true' : 'false';$this->log->warning("Retries left? $shouldRetryText");if ($shouldRetry && !$neverRetry) {return $transport->performRequest($request['http_method'],$request['uri'],[],$request['body'],$options
in
vendor/react/promise/src/Internal/FulfilledPromise.php
->
Elasticsearch\Connections\{closure}
(line 47)
try {/*** @var PromiseInterface<T>|T $result*/$result = $onFulfilled($this->value);return resolve($result);} catch (\Throwable $exception) {return new RejectedPromise($exception);}}
in
vendor/ezimuel/ringphp/src/Future/CompletedFutureValue.php
->
then
(line 66)
*/public function then(?callable $onFulfilled = null,?callable $onRejected = null) {return $this->promise()->then($onFulfilled, $onRejected);}}
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 264)
$this->lastRequest = [];$this->lastRequest['request'] = $request;// Send the request using the wrapped handler.$response = Core::proxy($handler($request),function ($response) use ($connection, $transport, $request, $options) {$this->lastRequest['response'] = $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 109)
$response = [];$caughtException = null;$this->lastConnection = $connection;$future = $connection->performRequest($method,$uri,$params,$body,$options,
in
vendor/elasticsearch/elasticsearch/src/Elasticsearch/Client.php
->
performRequest
(line 1924)
/*** @return callable|array*/private function performRequest(AbstractEndpoint $endpoint){$promise = $this->transport->performRequest($endpoint->getMethod(),$endpoint->getURI(),$endpoint->getParams(),$endpoint->getBody(),$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 323)
$targetGroupQuery = new BoolQuery();$targetGroupQuery->add(new TermQuery('excerpt.audience_targeting_groups', $targetGroup), BoolQuery::MUST);$search->addQuery($targetGroupQuery);}return $repository->findDocuments($search);}/*** Initialize search with neccesary queries.*/
in
vendor/sulu/article-bundle/Content/ArticleDataProvider.php
->
getSearchResult
(line 214)
$filters['excluded'] = $this->getExcludedFilter($filters, $propertyParameter);/** @var string|null $locale */$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 237)
// is paginated$page = $this->getCurrentPage($params['page_parameter']->getValue());$pageSize = \intval($params['max_per_page']->getValue());// resolve paginated filters$data = $provider->resolveResourceItems($filters,$params,$options,!empty($limit) ? \intval($limit) : null,$page,
in
vendor/sulu/sulu/src/Sulu/Component/SmartContent/ContentType.php
->
getContentData
(line 273)
$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/Bundle/WebsiteBundle/Resolver/StructureResolver.php
->
getViewData
(line 134)
}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 110)
** @return mixed[]*/protected function getAttributes($attributes, ?StructureInterface $structure = null, $preview = false){return $this->container->get('sulu_website.resolver.parameter')->resolve($attributes,$this->container->get('sulu_core.webspace.request_analyzer'),$structure,$preview);
in
vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Controller/WebsiteController.php
->
getAttributes
(line 61)
if (!$this->container->get('twig')->getLoader()->exists($viewTemplate)) {throw new NotAcceptableHttpException(\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->renderBlockView($viewTemplate,
in
vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Controller/DefaultController.php
->
renderStructure
(line 33)
** @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 183)
$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, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 182)
$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/6.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 20:38:14 | deprecation |
User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "ONGR\ElasticsearchBundle\ONGRElasticsearchBundle" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Version detection logic for MySQL will change in DBAL 4. Please specify the version as the server reports it, e.g. "10.9.3-MariaDB" instead of "mariadb-10.9". (AbstractMySQLDriver.php:176 called by AbstractMySQLDriver.php:45, https://github.com/doctrine/dbal/pull/5779, package doctrine/orm) {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "JsonSerializable::jsonSerialize()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\Content\Compat\Property" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "Symfony\Component\Form\AbstractType::buildForm()" might add "void" as a native return type declaration in the future. Do the same in child class "Sulu\Bundle\PageBundle\Form\Type\AbstractStructureBehaviorType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "Symfony\Component\Form\AbstractType::buildForm()" might add "void" as a native return type declaration in the future. Do the same in child class "Sulu\Bundle\ArticleBundle\Document\Form\ArticleDocumentType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "Symfony\Component\Form\AbstractType::configureOptions()" might add "void" as a native return type declaration in the future. Do the same in child class "Sulu\Bundle\ArticleBundle\Document\Form\ArticleDocumentType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "Symfony\Component\Form\AbstractType::buildForm()" might add "void" as a native return type declaration in the future. Do the same in child class "Sulu\Bundle\ArticleBundle\Document\Form\ArticlePageDocumentType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "Symfony\Component\Form\AbstractType::configureOptions()" might add "void" as a native return type declaration in the future. Do the same in child class "Sulu\Bundle\ArticleBundle\Document\Form\ArticlePageDocumentType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "Symfony\Component\Form\AbstractType::configureOptions()" might add "void" as a native return type declaration in the future. Do the same in child class "Sulu\Bundle\ArticleBundle\Document\Form\UnstructuredType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredSupertypeNames()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isAbstract()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isMixin()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::hasOrderableChildNodes()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isQueryable()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getPrimaryItemName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredPropertyDefinitions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredChildNodeDefinitions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::getDeclaringNodeType()" might add "NodeTypeInterface" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::getName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::isAutoCreated()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::isMandatory()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::getOnParentVersion()" might add "int" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::isProtected()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::getRequiredPrimaryTypes()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::getRequiredPrimaryTypeNames()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::getDefaultPrimaryType()" might add "NodeTypeInterface" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::getDefaultPrimaryTypeName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::allowsSameNameSiblings()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredSupertypeNames()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isAbstract()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isMixin()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::hasOrderableChildNodes()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isQueryable()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getPrimaryItemName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredPropertyDefinitions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredChildNodeDefinitions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "JMS\Serializer\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Serializer\ArticlePageSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "JMS\Serializer\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Serializer\ArticleSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "JMS\Serializer\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Serializer\WebsiteArticleUrlsSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "JsonSerializable::jsonSerialize()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\Content\Compat\Structure\StructureBridge" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\ArticlePageSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\ArticleSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\DateShardingSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\PageSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\WebspaceSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "PHPCR\Query\QueryManagerInterface::createQuery()" might add "QueryInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QueryManager" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "IteratorAggregate::getIterator()" might add "\Traversable" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\Webspace\Manager\WebspaceCollection" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Method "JsonSerializable::jsonSerialize()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\Localization\Localization" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. {
"exception": {}
}
|
| INFO 20:38:14 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "952b39"
},
"request_uri": "https://euromouldings.accept.vzw.io/_profiler/952b39",
"method": "GET"
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\Routing\RequestListener::onRequest". {
"event": "kernel.request",
"listener": "Sulu\\Bundle\\WebsiteBundle\\Routing\\RequestListener::onRequest"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\SecurityBundle\EventListener\SystemListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SystemListener::onKernelRequest"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\TranslatorListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\TranslatorListener::onKernelRequest"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\SecurityListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\SecurityListener::onKernelRequest"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\FormBundle\Event\RequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Sulu\\Bundle\\FormBundle\\Event\\RequestListener::onKernelRequest"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\ThemeBundle\EventListener\SetThemeEventListener::setActiveThemeOnRequest". {
"event": "kernel.request",
"listener": "Sulu\\Bundle\\ThemeBundle\\EventListener\\SetThemeEventListener::setActiveThemeOnRequest"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\AttributesListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\HttpCacheBundle\\EventListener\\AttributesListener::onKernelRequest"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\MediaBundle\FileInspector\UploadFileSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Sulu\\Bundle\\MediaBundle\\FileInspector\\UploadFileSubscriber::onKernelRequest"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\FormBundle\Event\ProtectedMediaSubscriber::onRequest". {
"event": "kernel.request",
"listener": "Sulu\\Bundle\\FormBundle\\Event\\ProtectedMediaSubscriber::onRequest"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.controller" to listener "Sulu\Bundle\SecurityBundle\EventListener\SuluSecurityListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SuluSecurityListener::onKernelController"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\IsSignatureValidAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\IsSignatureValidAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.controller_arguments" to listener "Container1OuJpve\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Container1OuJpve\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
}
|
| DEBUG 20:38:14 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 20:38:14 | deprecation |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
Stack Trace
|
NoNodesAvailableException
|
|---|
Elasticsearch\Common\Exceptions\NoNodesAvailableException:
No alive nodes found in your cluster
at vendor/elasticsearch/elasticsearch/src/Elasticsearch/ConnectionPool/StaticNoPingConnectionPool.php:64
at Elasticsearch\ConnectionPool\StaticNoPingConnectionPool->nextConnection()
(vendor/elasticsearch/elasticsearch/src/Elasticsearch/Transport.php:82)
at Elasticsearch\Transport->getConnection()
(vendor/elasticsearch/elasticsearch/src/Elasticsearch/Transport.php:99)
at Elasticsearch\Transport->performRequest()
(vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/Connection.php:296)
at Elasticsearch\Connections\Connection->Elasticsearch\Connections\{closure}()
(vendor/react/promise/src/Internal/FulfilledPromise.php:47)
at React\Promise\Internal\FulfilledPromise->then()
(vendor/ezimuel/ringphp/src/Future/CompletedFutureValue.php:66)
at GuzzleHttp\Ring\Future\CompletedFutureValue->then()
(vendor/ezimuel/ringphp/src/Core.php:341)
at GuzzleHttp\Ring\Core::proxy()
(vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/Connection.php:264)
at Elasticsearch\Connections\Connection->Elasticsearch\Connections\{closure}()
(vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/Connection.php:241)
at Elasticsearch\Connections\Connection->performRequest()
(vendor/elasticsearch/elasticsearch/src/Elasticsearch/Transport.php:109)
at Elasticsearch\Transport->performRequest()
(vendor/elasticsearch/elasticsearch/src/Elasticsearch/Client.php:1924)
at Elasticsearch\Client->performRequest()
(vendor/elasticsearch/elasticsearch/src/Elasticsearch/Client.php:1353)
at Elasticsearch\Client->search()
(vendor/handcraftedinthealps/elasticsearch-bundle/Service/Manager.php:305)
at ONGR\ElasticsearchBundle\Service\Manager->search()
(vendor/handcraftedinthealps/elasticsearch-bundle/Service/Repository.php:289)
at ONGR\ElasticsearchBundle\Service\Repository->executeSearch()
(vendor/handcraftedinthealps/elasticsearch-bundle/Service/Repository.php:234)
at ONGR\ElasticsearchBundle\Service\Repository->findDocuments()
(vendor/sulu/article-bundle/Content/ArticleDataProvider.php:323)
at Sulu\Bundle\ArticleBundle\Content\ArticleDataProvider->getSearchResult()
(vendor/sulu/article-bundle/Content/ArticleDataProvider.php:214)
at Sulu\Bundle\ArticleBundle\Content\ArticleDataProvider->resolveResourceItems()
(vendor/sulu/sulu/src/Sulu/Component/SmartContent/ContentType.php:237)
at Sulu\Component\SmartContent\ContentType->getContentData()
(vendor/sulu/sulu/src/Sulu/Component/SmartContent/ContentType.php:273)
at Sulu\Component\SmartContent\ContentType->getViewData()
(vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Resolver/StructureResolver.php:134)
at Sulu\Bundle\WebsiteBundle\Resolver\StructureResolver->resolve()
(vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Resolver/ParameterResolver.php:83)
at Sulu\Bundle\WebsiteBundle\Resolver\ParameterResolver->resolve()
(vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Controller/WebsiteController.php:110)
at Sulu\Bundle\WebsiteBundle\Controller\WebsiteController->getAttributes()
(vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Controller/WebsiteController.php:61)
at Sulu\Bundle\WebsiteBundle\Controller\WebsiteController->renderStructure()
(vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/Controller/DefaultController.php:33)
at Sulu\Bundle\WebsiteBundle\Controller\DefaultController->indexAction()
(vendor/symfony/http-kernel/HttpKernel.php:183)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:182)
at Symfony\Component\HttpKernel\Kernel->handle()
(public/index.php:69)
|