add debug message about fetched keycloak keys
All checks were successful
Build Container / Build Container (push) Successful in 1m42s

This commit is contained in:
lilly 2026-07-18 20:50:29 +02:00
commit ba404112d7
Signed by: lilly
SSH key fingerprint: SHA256:y9T5GFw2A20WVklhetIxG1+kcg/Ce0shnQmbu1LQ37g

View file

@ -71,6 +71,7 @@ class KeycloakClient:
async with self.http.get(f"./attribute-endpoints-provider/export/{self.keycloak_attribute_group}") as resp:
keys = await resp.json()
assert isinstance(keys, list)
logger.info(f"Successfully fetched {len(keys)} from Keycloak")
self.ssh_keys = keys
self.data_updated.set()
self.data_updated.clear()