fix: add harder timeouts to uvicorn.run
CI / lint (push) Skipped
CI / test (3.11) (push) Skipped
CI / test (3.12) (push) Skipped
CI / test (3.13) (push) Skipped
CI / test-with-beamline-plugins (pxi_bec) (push) Skipped
CI / test-with-beamline-plugins (pxii_bec) (push) Skipped
CI / test-with-beamline-plugins (pxiii_bec) (push) Skipped
CI / lint (pull_request) Successful in 50s
CI / test (3.11) (pull_request) Successful in 1m8s
CI / test (3.12) (pull_request) Successful in 1m12s
CI / test (3.13) (pull_request) Successful in 1m11s
CI / test-with-beamline-plugins (pxi_bec) (pull_request) Successful in 1m13s
CI / test-with-beamline-plugins (pxii_bec) (pull_request) Successful in 1m14s
CI / test-with-beamline-plugins (pxiii_bec) (pull_request) Successful in 1m27s
CI / test-with-coverage (pull_request) Successful in 1m39s
CI / coverage-analysis (pull_request) Failing after 4s

This commit is contained in:
David Perl
2026-08-25 14:33:08 +02:00
parent c43259c9ee
commit 8f71e07ebc
+3 -1
View File
@@ -133,8 +133,8 @@ async def lifespan(application: FastAPI):
yield # ── application serves requests here ──
# Shutdown: add cleanup here if needed
daq.shutdown()
logger.info(f"Worker {os.getpid()} shutting down.")
daq.shutdown()
app = FastAPI(lifespan=lifespan)
@@ -2531,6 +2531,8 @@ def main():
proxy_headers=False,
log_config=get_uvicorn_logging_config(),
timeout_worker_healthcheck=30,
timeout_graceful_shutdown=1,
timeout_keep_alive=30,
)