Skip to content

Commit

Permalink
GraphQl mutation state check | PlaceOrder and Customer actions - skip…
Browse files Browse the repository at this point in the history
… list adjustments (#90)

* #82 - exclude Ealsticsearch classes from mutation state check, as they are going to be used for product reindexation need once indexer state is set OnDemand.

* #82 - exclude Redis client and logger classes for customer create&update 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.

* #82 - exclude Redis client and logger classes for customer create&update 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 authored Mar 19, 2024
1 parent 75cadbe commit 8f79520
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -545,6 +545,26 @@
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,
],
'createCustomer' => [
Magento\Framework\Session\SaveHandler\Redis\Config::class => null,
Magento\Framework\Session\SaveHandler\Redis\Logger::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 8f79520

Please sign in to comment.