Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Morton <JasonMortonNZ@users.noreply.github.com>2022-05-25 00:13:13 +0300
committerGitHub <noreply@github.com>2022-05-25 00:13:13 +0300
commit53c00a78caf96d24dd8f7f74dc8fd74268b312b1 (patch)
treecb3cdf33861c56795b0d701ff1beb4f0f15f70cd
parent9cf0ef19a513bd007d14d17aa81bb69d6b24c4f7 (diff)
Add 429 response code (#19245)
* Add 429 response code * Only set the default adapter if needed * Revert adapter change
-rw-r--r--core/Common.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/Common.php b/core/Common.php
index 44d9e2cfdf..95bc22d5d6 100644
--- a/core/Common.php
+++ b/core/Common.php
@@ -1137,6 +1137,7 @@ class Common
401 => 'Unauthorized',
403 => 'Forbidden',
404 => 'Not Found',
+ 429 => 'Too Many Requests',
500 => 'Internal Server Error',
503 => 'Service Unavailable',
);