feature/sso-hardening #9

Merged
bstein merged 685 commits from feature/sso-hardening into main 2026-01-13 20:23:26 +00:00
Showing only changes of commit b86800cd6d - Show all commits

View File

@ -278,7 +278,12 @@ spec:
finally: finally:
mas_revoke_session(admin_token, session_id) mas_revoke_session(admin_token, session_id)
for entry in synapse_list_users(seeder_token): try:
entries = synapse_list_users(seeder_token)
except Exception as exc: # noqa: BLE001
print(f"synapse admin list skipped: {exc}")
entries = []
for entry in entries:
user_id = entry.get("name") or "" user_id = entry.get("name") or ""
if not user_id.startswith("@"): if not user_id.startswith("@"):
continue continue