Skip to content

Commit 17de5fe

Browse files
committed
AC-1271: Add rate limiting for payment information endpoint and mutation
1 parent 48cad97 commit 17de5fe

File tree

5 files changed

+0
-226
lines changed

5 files changed

+0
-226
lines changed

dev/tests/integration/etc/install-config-mysql.php.dist

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,4 @@ return [
2424
'amqp-user' => 'guest',
2525
'amqp-password' => 'guest',
2626
'consumers-wait-for-messages' => '0',
27-
'backpressure-logger' => 'redis',
28-
'backpressure-logger-redis-timeout'=>10,
2927
];

dev/tests/integration/testsuite/Magento/Framework/App/Backpressure/SlidingWindow/RedisRequestLoggerTest.php

Lines changed: 0 additions & 100 deletions
This file was deleted.

dev/tests/integration/testsuite/Magento/GraphQl/Model/Backpressure/BackpressureTest.php

Lines changed: 0 additions & 70 deletions
This file was deleted.

dev/tests/integration/testsuite/Magento/Webapi/Controller/Rest/BackpressureTest.php

Lines changed: 0 additions & 53 deletions
This file was deleted.

lib/internal/Magento/Framework/App/Backpressure/SlidingWindow/RedisRequestLogger/RedisClient.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ public function __construct(DeploymentConfig $config)
100100
public function incrBy(string $key, int $decrement)
101101
{
102102
return $this->pipeline->incrBy($key, $decrement);
103-
104103
}
105104

106105
/**

0 commit comments

Comments
 (0)