From a52c81fd910e079c7e5cc053c6faa04077ec0d46 Mon Sep 17 00:00:00 2001 From: Tammo <112475628+rltas@users.noreply.github.com> Date: Thu, 11 Jul 2024 15:46:03 +0200 Subject: [PATCH] Incorrect value in default priority computation example --- docs/content/routing/routers/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/routing/routers/index.md b/docs/content/routing/routers/index.md index 117dc5b2a..99c06852b 100644 --- a/docs/content/routing/routers/index.md +++ b/docs/content/routing/routers/index.md @@ -479,7 +479,7 @@ A value of `0` for the priority is ignored: `priority = 0` means that the defaul | Name | Rule | Priority | |----------|------------------------------------------|----------| - | Router-1 | ```HostRegexp(`[a-z]+\.traefik\.com`)``` | 44 | + | Router-1 | ```HostRegexp(`[a-z]+\.traefik\.com`)``` | 34 | | Router-2 | ```Host(`foobar.traefik.com`)``` | 26 | The previous table shows that `Router-1` has a higher priority than `Router-2`.