fix: SSH update modal polls locally, collapsed log by default (v0.5.9)

Modal owns job poll and completion UI with countdown; log hidden until user clicks Показать лог; db.refresh on remote-job; cache-bust poll requests.
This commit is contained in:
2026-07-08 14:48:31 +10:00
parent 69fac2f26e
commit e7d5b1c60b
6 changed files with 224 additions and 38 deletions
+1
View File
@@ -653,6 +653,7 @@ def get_host_remote_job(
host = db.get(Host, host_id)
if host is None:
raise HTTPException(status_code=404, detail="Host not found")
db.refresh(host)
return HostRemoteActionJobResponse(**get_remote_action_status(host))
+1 -1
View File
@@ -1,5 +1,5 @@
"""Единый источник версии SAC (API, health, логи, OpenAPI)."""
APP_NAME = "Security Alert Center"
APP_VERSION = "0.5.7"
APP_VERSION = "0.5.9"
APP_VERSION_LABEL = f"{APP_NAME} v.{APP_VERSION}"