Saeid Noormohammadi
3 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
32 additions and
0 deletions
-
fastapi/applications.py
-
fastapi/routing.py
|
@ -512,6 +512,14 @@ class FastAPI(Starlette): |
|
|
Read more in the [FastAPI docs for `lifespan`](https://fastapi.tiangolo.com/advanced/events/). |
|
|
Read more in the [FastAPI docs for `lifespan`](https://fastapi.tiangolo.com/advanced/events/). |
|
|
""" |
|
|
""" |
|
|
), |
|
|
), |
|
|
|
|
|
deprecated( |
|
|
|
|
|
""" |
|
|
|
|
|
**Attention**: This parameter is deprecated. |
|
|
|
|
|
|
|
|
|
|
|
The recommended approach for managing startup and shutdown |
|
|
|
|
|
is by utilizing the lifespan parameter within the FastAPI app. |
|
|
|
|
|
""" |
|
|
|
|
|
), |
|
|
] = None, |
|
|
] = None, |
|
|
on_shutdown: Annotated[ |
|
|
on_shutdown: Annotated[ |
|
|
Optional[Sequence[Callable[[], Any]]], |
|
|
Optional[Sequence[Callable[[], Any]]], |
|
@ -525,6 +533,14 @@ class FastAPI(Starlette): |
|
|
[FastAPI docs for `lifespan`](https://fastapi.tiangolo.com/advanced/events/). |
|
|
[FastAPI docs for `lifespan`](https://fastapi.tiangolo.com/advanced/events/). |
|
|
""" |
|
|
""" |
|
|
), |
|
|
), |
|
|
|
|
|
deprecated( |
|
|
|
|
|
""" |
|
|
|
|
|
**Attention**: This parameter is deprecated. |
|
|
|
|
|
|
|
|
|
|
|
The recommended approach for managing startup and shutdown |
|
|
|
|
|
is by utilizing the lifespan parameter within the FastAPI app. |
|
|
|
|
|
""" |
|
|
|
|
|
), |
|
|
] = None, |
|
|
] = None, |
|
|
lifespan: Annotated[ |
|
|
lifespan: Annotated[ |
|
|
Optional[Lifespan[AppType]], |
|
|
Optional[Lifespan[AppType]], |
|
|
|
@ -763,6 +763,14 @@ class APIRouter(routing.Router): |
|
|
Read more in the [FastAPI docs for `lifespan`](https://fastapi.tiangolo.com/advanced/events/). |
|
|
Read more in the [FastAPI docs for `lifespan`](https://fastapi.tiangolo.com/advanced/events/). |
|
|
""" |
|
|
""" |
|
|
), |
|
|
), |
|
|
|
|
|
deprecated( |
|
|
|
|
|
""" |
|
|
|
|
|
**Attention**: This parameter is deprecated. |
|
|
|
|
|
|
|
|
|
|
|
The recommended approach for managing startup and shutdown |
|
|
|
|
|
is by utilizing the lifespan parameter within the APIRouter. |
|
|
|
|
|
""" |
|
|
|
|
|
), |
|
|
] = None, |
|
|
] = None, |
|
|
on_shutdown: Annotated[ |
|
|
on_shutdown: Annotated[ |
|
|
Optional[Sequence[Callable[[], Any]]], |
|
|
Optional[Sequence[Callable[[], Any]]], |
|
@ -776,6 +784,14 @@ class APIRouter(routing.Router): |
|
|
[FastAPI docs for `lifespan`](https://fastapi.tiangolo.com/advanced/events/). |
|
|
[FastAPI docs for `lifespan`](https://fastapi.tiangolo.com/advanced/events/). |
|
|
""" |
|
|
""" |
|
|
), |
|
|
), |
|
|
|
|
|
deprecated( |
|
|
|
|
|
""" |
|
|
|
|
|
**Attention**: This parameter is deprecated. |
|
|
|
|
|
|
|
|
|
|
|
The recommended approach for managing startup and shutdown |
|
|
|
|
|
is by utilizing the lifespan parameter within the APIRouter. |
|
|
|
|
|
""" |
|
|
|
|
|
), |
|
|
] = None, |
|
|
] = None, |
|
|
# the generic to Lifespan[AppType] is the type of the top level application |
|
|
# the generic to Lifespan[AppType] is the type of the top level application |
|
|
# which the router cannot know statically, so we use typing.Any |
|
|
# which the router cannot know statically, so we use typing.Any |
|
|