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
fix(iris): add --async to gcloud delete/reset to unblock heartbeat thread
Synchronous gcloud subprocess calls (especially `tpu-vm delete`, 10-18s)
were blocking the heartbeat thread, stalling all task dispatch cluster-wide
for minutes at a time. Add `--async` flag to all gcloud delete and reset
commands so they return immediately after submitting the operation to GCP.
All callers already handle terminate() failures gracefully (catch + log),
so async deletion is safe. Create and describe commands remain synchronous
since their results are needed immediately.
Fixes#3678
Co-authored-by: Russell Power <rjpower@users.noreply.github.com>
0 commit comments