From 8c68ec9b283d786820b88e7ef2caf9398ac0cadc Mon Sep 17 00:00:00 2001 From: td Date: Tue, 28 Mar 2023 20:38:58 +0530 Subject: [PATCH 1/2] doc: fix account login requests ratelimit defaults typo Signed-off-by: td --- 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 015855ee7ef4..060d0d5e69b4 100644 --- a/docs/usage/configuration/config_documentation.md +++ b/docs/usage/configuration/config_documentation.md @@ -1521,7 +1521,7 @@ This option specifies several limits for login: address. Defaults to `per_second: 0.003`, `burst_count: 5`. * `account` ratelimits login requests based on the account the - client is attempting to log into. Defaults to `per_second: 0.03`, + client is attempting to log into. Defaults to `per_second: 0.003`, `burst_count: 5`. * `failed_attempts` ratelimits login requests based on the account the From 178a7a5c8650e753fd15d67d68aed6af6d191f64 Mon Sep 17 00:00:00 2001 From: td Date: Tue, 28 Mar 2023 20:42:48 +0530 Subject: [PATCH 2/2] chore: changelog.d file --- changelog.d/15341.doc | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/15341.doc diff --git a/changelog.d/15341.doc b/changelog.d/15341.doc new file mode 100644 index 000000000000..d85c0fd2c490 --- /dev/null +++ b/changelog.d/15341.doc @@ -0,0 +1 @@ +Fix a typo in login requests ratelimit defaults.