From d3edfd8c6d6832f29c1920931b505eeb27caf3cf Mon Sep 17 00:00:00 2001 From: Roman Zavodskikh Date: Tue, 2 Jan 2024 17:41:54 +0100 Subject: [PATCH] Fixed the typo in clusterRatelimit filter docs (#2818) Signed-off-by: Roman Zavodskikh Co-authored-by: Roman Zavodskikh --- docs/reference/filters.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/reference/filters.md b/docs/reference/filters.md index a1ce142ce8..034202e3d7 100644 --- a/docs/reference/filters.md +++ b/docs/reference/filters.md @@ -2094,8 +2094,9 @@ See also the [ratelimit docs](https://godoc.org/github.com/zalando/skipper/ratel This ratelimit is calculated across all skipper peers and the same rate limit group. The first parameter is a string to select the same ratelimit group across one or more routes. The rate limit group -allows the given number of requests to a backend. You need to have run -skipper with command line flags `-enable-swarm` and +allows the given number of requests to a backend. + +You need to run skipper with command line flags `-enable-swarm` and `-enable-ratelimits`. See also our [cluster ratelimit tutorial](../tutorials/ratelimit.md#cluster-ratelimit)