Alibrown commited on
Commit
fb43e0b
·
verified ·
1 Parent(s): d919bb8

Update app/app.py

Browse files
Files changed (1) hide show
  1. app/app.py +2 -1
app/app.py CHANGED
@@ -21,7 +21,8 @@
21
 
22
  from quart import Quart, request, jsonify # async Flask — required for async providers + Neon DB
23
  import logging
24
- from waitress import serve # WSGI server — keeps HTTP non-blocking alongside asyncio
 
25
  import threading # bank-pattern: each blocking service gets its own thread
26
  import requests # sync HTTP for health check worker
27
  import time
 
21
 
22
  from quart import Quart, request, jsonify # async Flask — required for async providers + Neon DB
23
  import logging
24
+ from hypercorn.asyncio import serve
25
+ from hypercorn.config import Config
26
  import threading # bank-pattern: each blocking service gets its own thread
27
  import requests # sync HTTP for health check worker
28
  import time