Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

from submodules.model.business_objects import general
from util import request_util, config_handler
from submodules.model import session

app = FastAPI()

Expand Down Expand Up @@ -202,3 +203,5 @@ def healthcheck() -> responses.PlainTextResponse:
if not text:
text = "OK"
return responses.PlainTextResponse(text, status_code=status_code)

session.start_session_cleanup_thread()
Loading