fix(agent): normalize ssh session timeout blocker
Some checks failed
CD Pipeline / workflow-shape (push) Successful in 0s
CD Pipeline / cancel-stale-cd (push) Has been skipped
CD Pipeline / tests (push) Successful in 35s
CD Pipeline / build-and-deploy (push) Failing after 27s
CD Pipeline / post-deploy-checks (push) Has been skipped

This commit is contained in:
Your Name
2026-07-01 12:46:19 +08:00
parent 7019d4a005
commit ce5bcab8b5
10 changed files with 101 additions and 33 deletions

View File

@@ -37,7 +37,7 @@ def _assert_log_controlled_writeback_executor(payload: dict):
assert payload["rollups"]["current_blocker_control_path_blocked_count"] == 1
assert (
payload["rollups"]["current_blocker_control_path_pressure_blocked_count"]
== 1
== 0
)
assert payload["rollups"]["current_blocker_local_recovery_package_count"] == 1
assert payload["rollups"]["runtime_dispatch_performed"] is False
@@ -75,11 +75,11 @@ def _assert_log_controlled_writeback_executor(payload: dict):
"forbidden_runtime_actions"
]
assert current_queue["external_control_path_blocker"] == (
"remote_ssh_publickey_auth_stalled"
"remote_ssh_server_accepts_key_then_session_timeout"
)
assert current_queue["node_load_classifier"] == "high_load"
assert current_queue["node_load_high"] is True
assert current_queue["control_path_pressure_blocker"] == "node_load_high"
assert current_queue["node_load_classifier"] == "load_not_high"
assert current_queue["node_load_high"] is False
assert current_queue["control_path_pressure_blocker"] == ""
assert context["raw_payload_required"] is False
boundaries = payload["operation_boundaries"]