fix typo in keycloak ssh key count debug message
All checks were successful
Build Container / Build Container (push) Successful in 1m40s

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

View file

@ -71,7 +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")
logger.info(f"Successfully fetched {len(keys)} ssh keys from Keycloak")
self.ssh_keys = keys
self.data_updated.set()
self.data_updated.clear()