diff --git a/rnd/market/market/app.py b/rnd/market/market/app.py index 60adbbe1d95b..86c51fc80a5d 100644 --- a/rnd/market/market/app.py +++ b/rnd/market/market/app.py @@ -70,8 +70,8 @@ async def lifespan(app: fastapi.FastAPI): app.include_router(market.routes.admin.router, prefix="/market/admin", tags=["admin"]) -@app.get("/") -def hb(): +@app.get("/health") +def health(): return fastapi.responses.HTMLResponse( content="

Marketplace API

", status_code=200 )