| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- # Copyright (c) 2024 PaddlePaddle Authors. All Rights Reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- import logging
- from ....utils.deps import function_requires_deps, is_dep_available
- if is_dep_available("uvicorn"):
- import uvicorn
- if is_dep_available("fastapi"):
- from fastapi import FastAPI
- @function_requires_deps("fastapi", "uvicorn")
- def run_server(app: "FastAPI", *, host: str, port: int) -> None:
- # HACK: Fix duplicate logs
- uvicorn_version = tuple(int(x) for x in uvicorn.__version__.split("."))
- if uvicorn_version < (0, 19, 0):
- logging.getLogger("uvicorn").propagate = False
- # HACK
- # https://github.com/encode/starlette/issues/864
- class _EndpointFilter(logging.Filter):
- def filter(self, record: logging.LogRecord) -> bool:
- return record.getMessage().find("/health") == -1
- logging.getLogger("uvicorn.access").addFilter(_EndpointFilter())
- uvicorn.run(app, host=host, port=port, log_level="info")
|