Cleaned up events
All checks were successful
Build and deploy / Build container and manifests (push) Successful in 9m7s

This commit is contained in:
2025-04-14 00:57:21 +02:00
parent d21b53cf34
commit 9c37b2a2d1
4 changed files with 25 additions and 53 deletions

View File

@@ -39,7 +39,7 @@ impl Reconcile for Group {
lldap_client.create_group(&name).await?;
ctx.recorder.group_created(self.as_ref(), &name).await?;
ctx.recorder.group_created(self.as_ref()).await?;
} else {
trace!("Group already exists");
}
@@ -66,7 +66,7 @@ impl Reconcile for Group {
lldap_client.delete_group(group.id).await?;
ctx.recorder.group_deleted(self.as_ref(), &name).await?;
ctx.recorder.group_deleted(self.as_ref()).await?;
} else {
trace!(name, "Group does not exist")
}