mirror of
https://github.com/PaiGramTeam/luoxu-api-pub.git
synced 2024-11-21 22:58:21 +00:00
fix: timeout error
This commit is contained in:
parent
e40e2b3052
commit
d7dc6b0884
7
main.py
7
main.py
@ -1,7 +1,7 @@
|
|||||||
from typing import Union
|
from typing import Union
|
||||||
|
|
||||||
from fastapi import FastAPI
|
from fastapi import FastAPI
|
||||||
from httpx import AsyncClient
|
from httpx import AsyncClient, ReadTimeout
|
||||||
from starlette.middleware.cors import CORSMiddleware
|
from starlette.middleware.cors import CORSMiddleware
|
||||||
from starlette.requests import Request
|
from starlette.requests import Request
|
||||||
from starlette.responses import StreamingResponse, RedirectResponse
|
from starlette.responses import StreamingResponse, RedirectResponse
|
||||||
@ -77,7 +77,10 @@ async def get_names(request: Request):
|
|||||||
@app.get("/luoxu/avatar/{avatar}")
|
@app.get("/luoxu/avatar/{avatar}")
|
||||||
async def read_avatar(avatar: str):
|
async def read_avatar(avatar: str):
|
||||||
async with AsyncClient(timeout=60) as client:
|
async with AsyncClient(timeout=60) as client:
|
||||||
r = await client.get(f"{local_api}avatar/{avatar}")
|
try:
|
||||||
|
r = await client.get(f"{local_api}avatar/{avatar}")
|
||||||
|
except ReadTimeout:
|
||||||
|
return RedirectResponse(url=ghost_url)
|
||||||
if r.status_code == 307:
|
if r.status_code == 307:
|
||||||
return RedirectResponse(url=ghost_url)
|
return RedirectResponse(url=ghost_url)
|
||||||
return StreamingResponse(r.aiter_bytes(), media_type="image/png")
|
return StreamingResponse(r.aiter_bytes(), media_type="image/png")
|
||||||
|
Loading…
Reference in New Issue
Block a user