From 94e58bd17c30f64c3e3221f3e7a71258b0ba9134 Mon Sep 17 00:00:00 2001 From: Brendan Abolivier Date: Tue, 6 Sep 2022 17:19:44 +0200 Subject: [PATCH 1/2] Fix typo in ratelimiting documentation --- docs/usage/configuration/config_documentation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage/configuration/config_documentation.md b/docs/usage/configuration/config_documentation.md index 757957a1d58f..5f33aa0dfac0 100644 --- a/docs/usage/configuration/config_documentation.md +++ b/docs/usage/configuration/config_documentation.md @@ -1391,7 +1391,7 @@ This option specifies several limits for login: client is attempting to log into. Defaults to `per_second: 0.17`, `burst_count: 3`. -* `failted_attempts` ratelimits login requests based on the account the +* `failed_attempts` ratelimits login requests based on the account the client is attempting to log into, based on the amount of failed login attempts for this account. Defaults to `per_second: 0.17`, `burst_count: 3`. From 489d8982508caa225bab99b5e6c43df8cfd9a27c Mon Sep 17 00:00:00 2001 From: Brendan Abolivier Date: Tue, 6 Sep 2022 17:20:39 +0200 Subject: [PATCH 2/2] Changelog --- changelog.d/13727.doc | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/13727.doc diff --git a/changelog.d/13727.doc b/changelog.d/13727.doc new file mode 100644 index 000000000000..ba530b409dd1 --- /dev/null +++ b/changelog.d/13727.doc @@ -0,0 +1 @@ +Fix a typo in the documentation for the login ratelimiting configuration.