Add `/readyz` endpoint

This commit is contained in:
Lauri Võsandi 2022-02-13 13:17:29 +02:00 committed by Lauri Võsandi
parent 2ab4c09aa4
commit f52be8f7c5
1 changed files with 7 additions and 0 deletions

View File

@ -209,6 +209,13 @@ async def stream_wrapper(request):
)
@app.route("/readyz")
async def ready_check(request):
if len(app.ctx.frames) == 2 ** SLIDE_WINDOW:
return response.text("OK")
return response.text("Not enough frames", status=503)
@app.route('/event')
async def wrapper_stream_event(request):
async def stream_event(response):