Skip to content

Commit

Permalink
Fix: Do not check for lifespan yet
Browse files Browse the repository at this point in the history
Lifespan is a new feature that requires a new runtime to be deployed before it can be enforced.
  • Loading branch information
hoh committed Sep 25, 2023
1 parent 57d95c4 commit 29881f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vm_supervisor/views/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@ async def status_check_fastapi(request: web.Request):
async with aiohttp.ClientSession() as session:
result = {
"index": await status.check_index(session),
"lifespan": await status.check_lifespan(session),
# TODO: lifespan is a new feature that requires a new runtime to be deployed
# "lifespan": await status.check_lifespan(session),
"environ": await status.check_environ(session),
"messages": await status.check_messages(session),
"dns": await status.check_dns(session),
Expand Down

0 comments on commit 29881f4

Please sign in to comment.