Open taesungh opened 11 months ago
Submitted jordaneremieff/mangum#315 to ask if they have any thoughts.
We might be able to set up a Vercel CRON job to automatically redeploy at a certain interval. Currently investigating this.
Deployed temporary AWS Lambda function which runs periodically to check Axiom logs and redeploy last Vercel deployment when needed.
It seems that while Vercel added support for Python 3.12 (including ASGI) via vercel/vercel#11675, the logic for ASGICycle
in vc_init.py
was updated to fit with the changes in Python 3.10
The loop parameter has been removed from most of asyncio‘s high-level API following deprecation in Python 3.8.
Perhaps upgrading to Python 3.12 on Vercel will fix the OSError
issue?
Similar to HackAtUCI/HackUCI-Site#86 The API sporadically encounters a runtime issue causing requests to fail
where
vc__handler__python.py
refers to Vercel's Python runtime handler.