Error 500 Internal Server Error

GET https://dev.kochamysamochody.pl/pl_PL/taxons/chemia-mycie-silnika-mycie-silnika

Exceptions

no such index [prod_bitbag_attribute_taxons_dev] [index: prod_bitbag_attribute_taxons_dev]

Exception

Elastica\Exception\ ResponseException

Show exception properties
Elastica\Exception\ResponseException {#11555
  #_request: Elastica\Request {#11541
    #_params: array:5 [
      "path" => "prod_bitbag_attribute_taxons_dev/_search"
      "method" => "POST"
      "data" => array:2 [
        "query" => array:1 [
          "bool" => array:1 [
            "must" => array:1 [
              0 => array:1 [
                "terms" => array:1 [
                  "attribute_taxons" => array:1 [
                    0 => "c.2.1."
                  ]
                ]
              ]
            ]
          ]
        ]
        "size" => 20
      ]
      "query" => []
      "contentType" => "application/json"
    ]
    #_rawParams: []
    #_connection: Elastica\Connection {#7570
      #_params: array:12 [
        "config" => array:2 [
          "headers" => []
          "curl" => []
        ]
        "host" => "elasticsearch-prod"
        "port" => 9200
        "username" => "elastic"
        "password" => "ElasticSearch2024#Secure!Production"
        "http_error_codes" => array:3 [
          0 => 400
          1 => 403
          2 => 404
        ]
        "ssl" => false
        "logger" => "fos_elastica.logger"
        "compression" => false
        "retryOnConflict" => 0
        "persistent" => true
        "enabled" => true
      ]
      #_rawParams: []
    }
  }
  #_response: Elastica\Response {#11734
    #_queryTime: 0.075402021408081
    #_responseString: ""
    #_transferInfo: array:38 [
      "url" => "http://elasticsearch-prod:9200/prod_bitbag_attribute_taxons_dev/_search"
      "content_type" => "application/json"
      "http_code" => 404
      "header_size" => 327
      "request_size" => 639
      "filetime" => -1
      "ssl_verify_result" => 0
      "redirect_count" => 1
      "total_time" => 0.072349
      "namelookup_time" => 0.006625
      "connect_time" => 0.007553
      "pretransfer_time" => 0.007857
      "size_upload" => 81.0
      "size_download" => 179.0
      "speed_download" => 2474.0
      "speed_upload" => 1119.0
      "download_content_length" => 179.0
      "upload_content_length" => 81.0
      "starttransfer_time" => 0.071952
      "redirect_time" => 0.032597
      "redirect_url" => ""
      "primary_ip" => "172.19.0.5"
      "certinfo" => []
      "primary_port" => 9200
      "local_ip" => "172.19.0.2"
      "local_port" => 43388
      "http_version" => 2
      "protocol" => 1
      "ssl_verifyresult" => 0
      "scheme" => "http"
      "appconnect_time_us" => 0
      "connect_time_us" => 7553
      "namelookup_time_us" => 6625
      "pretransfer_time_us" => 7857
      "redirect_time_us" => 32597
      "starttransfer_time_us" => 71952
      "total_time_us" => 72349
      "effective_method" => "POST"
    ]
    #_response: array:2 [
      "error" => array:7 [
        "root_cause" => array:1 [
          0 => array:6 [
            "type" => "index_not_found_exception"
            "reason" => "no such index [prod_bitbag_attribute_taxons_dev]"
            "resource.type" => "index_or_alias"
            "resource.id" => "prod_bitbag_attribute_taxons_dev"
            "index_uuid" => "_na_"
            "index" => "prod_bitbag_attribute_taxons_dev"
          ]
        ]
        "type" => "index_not_found_exception"
        "reason" => "no such index [prod_bitbag_attribute_taxons_dev]"
        "resource.type" => "index_or_alias"
        "resource.id" => "prod_bitbag_attribute_taxons_dev"
        "index_uuid" => "_na_"
        "index" => "prod_bitbag_attribute_taxons_dev"
      ]
      "status" => 404
    ]
    #_status: 404
    #_jsonBigintConversion: false
  }
}
  1.         if ($connection->hasConfig('bigintConversion')) {
  2.             $response->setJsonBigintConversion($connection->getConfig('bigintConversion'));
  3.         }
  4.         if ($response->hasError()) {
  5.             throw new ResponseException($request$response);
  6.         }
  7.         if ($response->hasFailedShards()) {
  8.             throw new PartialShardFailureException($request$response);
  9.         }
  1.     public function send(): Response
  2.     {
  3.         $transport $this->getConnection()->getTransportObject();
  4.         // Refactor: Not full toArray needed in exec?
  5.         return $transport->exec($this$this->getConnection()->toArray());
  6.     }
  7.     /**
  8.      * @return array
  9.      */
  1.         $connection $this->getConnection();
  2.         $request $this->_lastRequest = new Request($path$method$data$query$connection$contentType);
  3.         $this->_lastResponse null;
  4.         try {
  5.             $response $this->_lastResponse $request->send();
  6.         } catch (ConnectionException $e) {
  7.             $this->_connectionPool->onFail($connection$e$this);
  8.             $this->_logger->error('Elastica Request Failure', [
  9.                 'exception' => $e,
  10.                 'request' => $e->getRequest()->toArray(),
  1.         if ($this->dispatcher) {
  2.             $this->dispatcher->dispatch(new PreElasticaRequestEvent($path$method$data$query$contentType));
  3.         }
  4.         try {
  5.             $response parent::request($path$method$data$query$contentType);
  6.             if ($this->dispatcher) {
  7.                 $this->dispatcher->dispatch(new PostElasticaRequestEvent($this->getLastRequest(), $this->getLastResponse()));
  8.             }
  9.         } catch (ExceptionInterface $e) {
  1.             unset($params[self::OPTION_SCROLL_ID]);
  2.         } else {
  3.             $data $query->toArray();
  4.         }
  5.         $response $this->getClient()->request($path$method$data$params);
  6.         return $this->builder->buildResultSet($response$query);
  7.     }
  8.     /**
  1.      */
  2.     public function search($query ''$options nullstring $method Request::POST): ResultSet
  3.     {
  4.         $search $this->createSearch($query$options);
  5.         return $search->search(''null$method);
  6.     }
  7.     /**
  8.      * {@inheritdoc}
  9.      */
  1.         $queryObject Query::create($query);
  2.         if (null !== $limit) {
  3.             $queryObject->setSize($limit);
  4.         }
  5.         return $this->searchable->search($queryObject$options)->getResults();
  6.     }
  7. }
  1.         $this->transformer $transformer;
  2.     }
  3.     public function find($query, ?int $limit null, array $options = [])
  4.     {
  5.         $results $this->search($query$limit$options);
  6.         return $this->transformer->transform($results);
  7.     }
  8.     public function findHybrid($query, ?int $limit null, array $options = [])
  1.         $data[$this->taxonsProperty] = strtolower((string) $taxon->getCode());
  2.         /** @var AbstractQuery $query */
  3.         $query $this->attributesByTaxonQueryBuilder->buildQuery($data);
  4.         return $this->attributesFinder->find($query$this->filterMax);
  5.     }
  6. }
  1.             $data,
  2.             $requestData['price'] ?? [],
  3.             ['facets' => $requestData['facets'] ?? []],
  4.         );
  5.         $attributesDefinitions $this->attributesFinder->findByTaxon($taxon);
  6.         $this->handleOptionsPrefixedProperty($requestData$data);
  7.         $this->handleAttributesPrefixedProperty($requestData$data$attributesDefinitions);
  8.         return $data;
  1.         $eventData $event->getData();
  2.         if (!isset($eventData[$namePropertyPrefix])) {
  3.             $eventData[$namePropertyPrefix] = '';
  4.         }
  5.         $data $this->shopProductListDataHandler->retrieveData($eventData);
  6.         /** @var Query\BoolQuery $boolQuery */
  7.         $boolQuery $this->searchProductsQueryBuilder->buildQuery($data);
  8.         foreach ($data['facets'] ?? [] as $facetId => $selectedBuckets) {
  1.     ) {
  2.     }
  3.     public function resolveFacets(FormEvent $eventstring $namePropertyPrefix): Pagerfanta
  4.     {
  5.         $query $this->queryBuilder->getQuery($event$namePropertyPrefix);
  6.         foreach ($this->facetRegistry->getFacets() as $facetId => $facet) {
  7.             $query->addAggregation($facet->getAggregation()->setName((string) $facetId));
  8.         }
  1.     }
  2.     public function addFacets(FormEvent $event): void
  3.     {
  4.         $this->autoDiscoverRegistry->autoRegister();
  5.         $adapter $this->facetsResolver->resolveFacets($event$this->namePropertyPrefix)->getAdapter();
  6.         $this->modifyForm($event->getForm(), $adapter);
  7.     }
  8.     private function modifyForm(FormInterface $formAdapterInterface $adapter): void
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.     ) {
  2.     }
  3.     public function dispatch(object $event, ?string $eventName null): object
  4.     {
  5.         return $this->dispatcher->dispatch($event$eventName);
  6.     }
  7.     public function addListener(string $eventName, callable|array $listenerint $priority 0): never
  8.     {
  9.         throw new \BadMethodCallException('Unmodifiable event dispatchers must not be modified.');
in vendor/symfony/form/Form.php -> dispatch (line 476)
  1.             }
  2.             // Hook to change content of the data submitted by the browser
  3.             if ($dispatcher->hasListeners(FormEvents::PRE_SUBMIT)) {
  4.                 $event = new PreSubmitEvent($this$submittedData);
  5.                 $dispatcher->dispatch($eventFormEvents::PRE_SUBMIT);
  6.                 $submittedData $event->getData();
  7.             }
  8.             // Check whether the form is compound.
  9.             // This check is preferable over checking the number of children,
  1.             } else {
  2.                 $data $params ?: $files;
  3.             }
  4.         }
  5.         $form->submit($data'PATCH' !== $method);
  6.     }
  7.     public function isFileUpload(mixed $data): bool
  8.     {
  9.         return $data instanceof File;
in vendor/symfony/form/Form.php -> handleRequest (line 414)
  1.         return $this;
  2.     }
  3.     public function handleRequest(mixed $request null): static
  4.     {
  5.         $this->config->getRequestHandler()->handleRequest($this$request);
  6.         return $this;
  7.     }
  8.     public function submit(mixed $submittedDatabool $clearMissing true): static
  1. {
  2.     public function __invoke(Request $request): Response
  3.     {
  4.         $template $request->get('template');
  5.         $form $this->formFactory->create(ShopProductsFilterType::class);
  6.         $form->handleRequest($request);
  7.         $requestData array_merge(
  8.             $form->getData(),
  9.             $request->query->all(),
  10.             ['slug' => $request->get('slug')]
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response$event);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
  1.     ) {
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         if (Kernel::VERSION_ID >= 60400) {
  7.             $response->send(false);
  8.             if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/var/www/html/vendor/autoload_runtime.php') in public/index.php (line 7)
  1. declare(strict_types=1);
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return static function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs

Level Channel Message
INFO 22:28:57 deprecation User Deprecated: The Liip\ImagineBundle\Templating\FilterTrait trait is deprecated since version 2.7 and will be removed in 3.0; use Twig instead.
{
    "exception": {}
}
INFO 22:28:57 deprecation User Deprecated: The Liip\ImagineBundle\Templating\FilterExtension class is deprecated since version 2.7 and will be removed in 3.0; configure "liip_imagine.twig.mode" to "lazy" instead.
{
    "exception": {}
}
INFO 22:28:57 doctrine Connecting with parameters {params}
{
    "params": {
        "driver": "pdo_mysql",
        "idle_connection_ttl": 600,
        "host": "mariadb-prod",
        "port": 3306,
        "user": "sylius_prod",
        "password": "<redacted>",
        "driverOptions": [],
        "defaultTableOptions": {
            "collation": "utf8mb4_unicode_ci"
        },
        "dbname": "sylius_prod",
        "charset": "utf8mb4"
    }
}
INFO 22:28:57 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "38968e"
    },
    "request_uri": "https://dev.kochamysamochody.pl/_profiler/38968e",
    "method": "GET"
}
DEBUG 22:28:57 doctrine Executing statement: SELECT t0.code AS code_1, t0.name AS name_2, t0.color AS color_3, t0.description AS description_4, t0.enabled AS enabled_5, t0.hostname AS hostname_6, t0.created_at AS created_at_7, t0.updated_at AS updated_at_8, t0.id AS id_9, t0.theme_name AS theme_name_10, t0.tax_calculation_strategy AS tax_calculation_strategy_11, t0.contact_email AS contact_email_12, t0.contact_phone_number AS contact_phone_number_13, t0.skipping_shipping_step_allowed AS skipping_shipping_step_allowed_14, t0.skipping_payment_step_allowed AS skipping_payment_step_allowed_15, t0.account_verification_required AS account_verification_required_16, t0.shipping_address_in_checkout_required AS shipping_address_in_checkout_required_17, t0.shop_billing_data_id AS shop_billing_data_id_18, t0.channel_price_history_config_id AS channel_price_history_config_id_19, t0.default_locale_id AS default_locale_id_20, t21.code AS code_22, t21.created_at AS created_at_23, t21.updated_at AS updated_at_24, t21.id AS id_25, t0.base_currency_id AS base_currency_id_26, t27.code AS code_28, t27.created_at AS created_at_29, t27.updated_at AS updated_at_30, t27.id AS id_31, t0.default_tax_zone_id AS default_tax_zone_id_32, t0.menu_taxon_id AS menu_taxon_id_33 FROM sylius_channel t0 INNER JOIN sylius_locale t21 ON t0.default_locale_id = t21.id INNER JOIN sylius_currency t27 ON t0.base_currency_id = t27.id WHERE t0.hostname = ? AND t0.enabled = ? ORDER BY t0.id ASC LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.code AS code_1, t0.name AS name_2, t0.color AS color_3, t0.description AS description_4, t0.enabled AS enabled_5, t0.hostname AS hostname_6, t0.created_at AS created_at_7, t0.updated_at AS updated_at_8, t0.id AS id_9, t0.theme_name AS theme_name_10, t0.tax_calculation_strategy AS tax_calculation_strategy_11, t0.contact_email AS contact_email_12, t0.contact_phone_number AS contact_phone_number_13, t0.skipping_shipping_step_allowed AS skipping_shipping_step_allowed_14, t0.skipping_payment_step_allowed AS skipping_payment_step_allowed_15, t0.account_verification_required AS account_verification_required_16, t0.shipping_address_in_checkout_required AS shipping_address_in_checkout_required_17, t0.shop_billing_data_id AS shop_billing_data_id_18, t0.channel_price_history_config_id AS channel_price_history_config_id_19, t0.default_locale_id AS default_locale_id_20, t21.code AS code_22, t21.created_at AS created_at_23, t21.updated_at AS updated_at_24, t21.id AS id_25, t0.base_currency_id AS base_currency_id_26, t27.code AS code_28, t27.created_at AS created_at_29, t27.updated_at AS updated_at_30, t27.id AS id_31, t0.default_tax_zone_id AS default_tax_zone_id_32, t0.menu_taxon_id AS menu_taxon_id_33 FROM sylius_channel t0 INNER JOIN sylius_locale t21 ON t0.default_locale_id = t21.id INNER JOIN sylius_currency t27 ON t0.base_currency_id = t27.id WHERE t0.hostname = ? AND t0.enabled = ? ORDER BY t0.id ASC LIMIT 1",
    "params": {
        "1": "dev.kochamysamochody.pl",
        "2": 1
    },
    "types": {
        "1": 2,
        "2": 5
    }
}
DEBUG 22:28:57 doctrine Executing query: SELECT COUNT(*) FROM sylius_channel t0
{
    "sql": "SELECT COUNT(*) FROM sylius_channel t0"
}
DEBUG 22:28:57 doctrine Executing query: SELECT t0.code AS code_1, t0.name AS name_2, t0.color AS color_3, t0.description AS description_4, t0.enabled AS enabled_5, t0.hostname AS hostname_6, t0.created_at AS created_at_7, t0.updated_at AS updated_at_8, t0.id AS id_9, t0.theme_name AS theme_name_10, t0.tax_calculation_strategy AS tax_calculation_strategy_11, t0.contact_email AS contact_email_12, t0.contact_phone_number AS contact_phone_number_13, t0.skipping_shipping_step_allowed AS skipping_shipping_step_allowed_14, t0.skipping_payment_step_allowed AS skipping_payment_step_allowed_15, t0.account_verification_required AS account_verification_required_16, t0.shipping_address_in_checkout_required AS shipping_address_in_checkout_required_17, t0.shop_billing_data_id AS shop_billing_data_id_18, t0.channel_price_history_config_id AS channel_price_history_config_id_19, t0.default_locale_id AS default_locale_id_20, t21.code AS code_22, t21.created_at AS created_at_23, t21.updated_at AS updated_at_24, t21.id AS id_25, t0.base_currency_id AS base_currency_id_26, t27.code AS code_28, t27.created_at AS created_at_29, t27.updated_at AS updated_at_30, t27.id AS id_31, t0.default_tax_zone_id AS default_tax_zone_id_32, t0.menu_taxon_id AS menu_taxon_id_33 FROM sylius_channel t0 INNER JOIN sylius_locale t21 ON t0.default_locale_id = t21.id INNER JOIN sylius_currency t27 ON t0.base_currency_id = t27.id LIMIT 1
{
    "sql": "SELECT t0.code AS code_1, t0.name AS name_2, t0.color AS color_3, t0.description AS description_4, t0.enabled AS enabled_5, t0.hostname AS hostname_6, t0.created_at AS created_at_7, t0.updated_at AS updated_at_8, t0.id AS id_9, t0.theme_name AS theme_name_10, t0.tax_calculation_strategy AS tax_calculation_strategy_11, t0.contact_email AS contact_email_12, t0.contact_phone_number AS contact_phone_number_13, t0.skipping_shipping_step_allowed AS skipping_shipping_step_allowed_14, t0.skipping_payment_step_allowed AS skipping_payment_step_allowed_15, t0.account_verification_required AS account_verification_required_16, t0.shipping_address_in_checkout_required AS shipping_address_in_checkout_required_17, t0.shop_billing_data_id AS shop_billing_data_id_18, t0.channel_price_history_config_id AS channel_price_history_config_id_19, t0.default_locale_id AS default_locale_id_20, t21.code AS code_22, t21.created_at AS created_at_23, t21.updated_at AS updated_at_24, t21.id AS id_25, t0.base_currency_id AS base_currency_id_26, t27.code AS code_28, t27.created_at AS created_at_29, t27.updated_at AS updated_at_30, t27.id AS id_31, t0.default_tax_zone_id AS default_tax_zone_id_32, t0.menu_taxon_id AS menu_taxon_id_33 FROM sylius_channel t0 INNER JOIN sylius_locale t21 ON t0.default_locale_id = t21.id INNER JOIN sylius_currency t27 ON t0.base_currency_id = t27.id LIMIT 1"
}
DEBUG 22:28:57 doctrine Executing statement: SELECT t0.code AS code_1, t0.created_at AS created_at_2, t0.updated_at AS updated_at_3, t0.id AS id_4 FROM sylius_locale t0 INNER JOIN sylius_channel_locales ON t0.id = sylius_channel_locales.locale_id WHERE sylius_channel_locales.channel_id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.code AS code_1, t0.created_at AS created_at_2, t0.updated_at AS updated_at_3, t0.id AS id_4 FROM sylius_locale t0 INNER JOIN sylius_channel_locales ON t0.id = sylius_channel_locales.locale_id WHERE sylius_channel_locales.channel_id = ?",
    "params": {
        "1": 3
    },
    "types": {
        "1": 1
    }
}

Stack Trace

ResponseException
Elastica\Exception\ResponseException:
no such index [prod_bitbag_attribute_taxons_dev] [index: prod_bitbag_attribute_taxons_dev]

  at vendor/ruflin/elastica/src/Transport/Http.php:178
  at Elastica\Transport\Http->exec(object(Request), array('connection' => array('config' => array('headers' => array(), 'curl' => array()), 'host' => 'elasticsearch-prod', 'port' => 9200, 'username' => 'elastic', 'password' => 'ElasticSearch2024#Secure!Production', 'http_error_codes' => array(400, 403, 404), 'ssl' => false, 'logger' => 'fos_elastica.logger', 'compression' => false, 'retryOnConflict' => 0, 'persistent' => true, 'enabled' => true)))
     (vendor/ruflin/elastica/src/Request.php:183)
  at Elastica\Request->send()
     (vendor/ruflin/elastica/src/Client.php:545)
  at Elastica\Client->request('prod_bitbag_attribute_taxons_dev/_search', 'POST', array('query' => array('bool' => array('must' => array(array('terms' => array('attribute_taxons' => array('c.2.1.')))))), 'size' => 20), array(), 'application/json')
     (vendor/friendsofsymfony/elastica-bundle/src/Elastica/Client.php:73)
  at FOS\ElasticaBundle\Elastica\Client->request('prod_bitbag_attribute_taxons_dev/_search', 'POST', array('query' => array('bool' => array('must' => array(array('terms' => array('attribute_taxons' => array('c.2.1.')))))), 'size' => 20), array())
     (vendor/ruflin/elastica/src/Search.php:352)
  at Elastica\Search->search(object(Query), null, 'POST')
     (vendor/ruflin/elastica/src/Index.php:546)
  at Elastica\Index->search(object(Query), array())
     (vendor/friendsofsymfony/elastica-bundle/src/Finder/TransformedFinder.php:117)
  at FOS\ElasticaBundle\Finder\TransformedFinder->search(object(BoolQuery), 20, array())
     (vendor/friendsofsymfony/elastica-bundle/src/Finder/TransformedFinder.php:43)
  at FOS\ElasticaBundle\Finder\TransformedFinder->find(object(BoolQuery), 20)
     (vendor/bitbag/elasticsearch-plugin/src/Finder/ProductAttributesFinder.php:38)
  at BitBag\SyliusElasticsearchPlugin\Finder\ProductAttributesFinder->findByTaxon(object(Taxon))
     (vendor/bitbag/elasticsearch-plugin/src/Controller/RequestDataHandler/ShopProductListDataHandler.php:47)
  at BitBag\SyliusElasticsearchPlugin\Controller\RequestDataHandler\ShopProductListDataHandler->retrieveData(array('name' => ''))
     (vendor/bitbag/elasticsearch-plugin/src/QueryBuilder/FormQueryBuilder/TaxonFacetsQueryBuilder.php:35)
  at BitBag\SyliusElasticsearchPlugin\QueryBuilder\FormQueryBuilder\TaxonFacetsQueryBuilder->getQuery(object(PreSubmitEvent), 'name')
     (vendor/bitbag/elasticsearch-plugin/src/Form/Resolver/ProductsFilterFacetResolver.php:30)
  at BitBag\SyliusElasticsearchPlugin\Form\Resolver\ProductsFilterFacetResolver->resolveFacets(object(PreSubmitEvent), 'name')
     (vendor/bitbag/elasticsearch-plugin/src/Form/EventSubscriber/AddFacetsEventSubscriber.php:44)
  at BitBag\SyliusElasticsearchPlugin\Form\EventSubscriber\AddFacetsEventSubscriber->addFacets(object(PreSubmitEvent), 'form.pre_submit', object(EventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(Closure), object(Closure)), 'form.pre_submit', object(PreSubmitEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(PreSubmitEvent), 'form.pre_submit')
     (vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php:28)
  at Symfony\Component\EventDispatcher\ImmutableEventDispatcher->dispatch(object(PreSubmitEvent), 'form.pre_submit')
     (vendor/symfony/form/Form.php:476)
  at Symfony\Component\Form\Form->submit(array(), true)
     (vendor/sylius/resource-bundle/src/Bundle/Form/Extension/HttpFoundation/HttpFoundationRequestHandler.php:110)
  at Sylius\Bundle\ResourceBundle\Form\Extension\HttpFoundation\HttpFoundationRequestHandler->handleRequest(object(Form), object(Request))
     (vendor/symfony/form/Form.php:414)
  at Symfony\Component\Form\Form->handleRequest(object(Request))
     (vendor/bitbag/elasticsearch-plugin/src/Controller/Action/Shop/TaxonProductsSearchAction.php:25)
  at BitBag\SyliusElasticsearchPlugin\Controller\Action\Shop\TaxonProductsSearchAction->__invoke(object(Request))
     (vendor/symfony/http-kernel/HttpKernel.php:183)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:182)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/var/www/html/vendor/autoload_runtime.php')
     (public/index.php:7)