You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With "start _ method = spell" and "- -reload" modify the code will produce a zombie process, modify the process.py-> _ terminate _ now() function, add self._current_process.join() after self._current_process.terminate() will not produce a zombie process, so ok?
Code snippet
from sanic import Sanic
from sanic.response import text
Is there an existing issue for this?
Describe the bug
With "start _ method = spell" and "- -reload" modify the code will produce a zombie process, modify the process.py-> _ terminate _ now() function, add self._current_process.join() after self._current_process.terminate() will not produce a zombie process, so ok?
Code snippet
from sanic import Sanic
from sanic.response import text
app = Sanic("MyHelloWorldApp")
@app.get("/")
async def hello_world(request):
# print('t')
return text("Hello, world.")
Expected Behavior
produce a zombie process
How do you run Sanic?
Sanic CLI
Operating System
Linux
Sanic Version
V24.6.0
Additional context
The text was updated successfully, but these errors were encountered: