Skip to content

Commit

Permalink
#82 - exclude Redis client and logger classes for customer create&upd…
Browse files Browse the repository at this point in the history
…ate operations. Session start with redis is tightly coupled yet with any customer related activity - even in GraphQl. I assume that is in TODO list to resolve by Adobe engeneers.
  • Loading branch information
vpodorozh committed Feb 20, 2024
1 parent 54711bc commit 0d87ac9
Showing 1 changed file with 16 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -522,8 +522,6 @@
Magento\GroupedProduct\Model\ResourceModel\Indexer\Stock\Grouped::class => null,
Magento\Elasticsearch\Model\Adapter\BatchDataMapper\DataMapperResolver::class => null,
Magento\Elasticsearch\Model\Adapter\Elasticsearch::class => null,
Magento\Elasticsearch7\Model\Client\Elasticsearch::class => null,
Magento\Elasticsearch\Model\Adapter\BatchDataMapper\ProductDataMapper::class => null,
Magento\Tax\Model\TaxClass\Source\Product::class => null,
Magento\Framework\View\TemplateEnginePool::class => null,
Magento\Framework\View\Element\Template\File\Resolver::class => null,
Expand All @@ -547,6 +545,22 @@
Magento\Framework\MessageQueue\Topology\Config\QueueConfigItem\DataMapper::class => null,
// phpcs:enable Generic.Files.LineLength.TooLong
],
'placeOrder' => [
Magento\Elasticsearch7\Model\Client\Elasticsearch::class => null,
Magento\Elasticsearch\Model\Adapter\BatchDataMapper\ProductDataMapper::class => null,
],
'updateCustomerAddress' => [
Magento\Framework\Session\SaveHandler\Redis\Config::class => null,
Magento\Framework\Session\SaveHandler\Redis\Logger::class => null,
],
'updateCustomerEmail' => [
Magento\Framework\Session\SaveHandler\Redis\Config::class => null,
Magento\Framework\Session\SaveHandler\Redis\Logger::class => null,
],
'updateCustomer' => [
Magento\Framework\Session\SaveHandler\Redis\Config::class => null,
Magento\Framework\Session\SaveHandler\Redis\Logger::class => null,
],
'' => [
],
];

0 comments on commit 0d87ac9

Please sign in to comment.