Dejan Krstic

Results 1 comments of Dejan Krstic

You can just override install_signal_handlers function: ``` # FastAPI Uvicorn override class Server(uvicorn.Server): # Override def install_signal_handlers(self) -> None: # Do nothing pass ``` And then when you catch interrupt...