chore(scripts): 推送提权验证脚本与温胜夜生产验证报告
Nexus CI/CD / test (push) Waiting to run
Nexus CI/CD / e2e (push) Blocked by required conditions
Nexus CI/CD / deploy (push) Blocked by required conditions
Nexus Pre-commit Checks / quick-check (push) Waiting to run

This commit is contained in:
Nexus Agent
2026-06-11 23:28:59 +08:00
parent 84b388fae2
commit f11ad35708
3 changed files with 221 additions and 0 deletions
+4
View File
@@ -124,6 +124,10 @@ async def run_patch(args: argparse.Namespace) -> list[dict[str, Any]]:
await asyncio.gather(*[_one(s) for s in servers])
from server.infrastructure.redis.client import close_redis
await close_redis()
ok = sum(1 for r in results if r.get("ok"))
fail = len(results) - ok
print(f"\nDone: {ok} ok / {fail} fail / {len(results)} total")