From 982880694c04c55ec6929593ef67b5b5e0eb18fd Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 15 Sep 2024 11:48:02 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20[pre-commit.ci]=20Auto=20format?= =?UTF-8?q?=20from=20pre-commit.com=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fastapi/applications.py | 2 +- fastapi/routing.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fastapi/applications.py b/fastapi/applications.py index 58d5b268a..cae292f37 100644 --- a/fastapi/applications.py +++ b/fastapi/applications.py @@ -823,7 +823,7 @@ class FastAPI(Starlette): One of them will result in a 307-redirect. It's important to understand that when `ignore_trailing_slash=True`, registering both `/auth` - and `/auth/` as different routes will be treated as if `/auth` was registered twice. + and `/auth/` as different routes will be treated as if `/auth` was registered twice. This means that only the first route registered will be used. Therefore, ensure your route setup does not conflict unintentionally. """ diff --git a/fastapi/routing.py b/fastapi/routing.py index cec5075e8..31db7ebef 100644 --- a/fastapi/routing.py +++ b/fastapi/routing.py @@ -844,7 +844,7 @@ class APIRouter(routing.Router): One of them will result in a 307-redirect. It's important to understand that when `ignore_trailing_slash=True`, registering both `/auth` - and `/auth/` as different routes will be treated as if `/auth` was registered twice. + and `/auth/` as different routes will be treated as if `/auth` was registered twice. This means that only the first route registered will be used. Therefore, ensure your route setup does not conflict unintentionally. """