v0.12.6 #10

Merged
serversdown merged 43 commits from seismo-lab-new into main 2026-05-04 13:22:56 -04:00
Showing only changes of commit 8cb8b86192 - Show all commits
+3
View File
@@ -898,10 +898,13 @@ def device_event_blastware_file(
except HTTPException: except HTTPException:
raise raise
except ProtocolError as exc: except ProtocolError as exc:
log.error("blastware_file: protocol error: %s", exc, exc_info=True)
raise HTTPException(status_code=502, detail=f"Protocol error: {exc}") from exc raise HTTPException(status_code=502, detail=f"Protocol error: {exc}") from exc
except OSError as exc: except OSError as exc:
log.error("blastware_file: connection error: %s", exc, exc_info=True)
raise HTTPException(status_code=502, detail=f"Connection error: {exc}") from exc raise HTTPException(status_code=502, detail=f"Connection error: {exc}") from exc
except Exception as exc: except Exception as exc:
log.error("blastware_file: unexpected error: %s", exc, exc_info=True)
raise HTTPException(status_code=500, detail=f"Device error: {exc}") from exc raise HTTPException(status_code=500, detail=f"Device error: {exc}") from exc
if ev is None: if ev is None: