Skip to content

Commit

Permalink
Fix error.
Browse files Browse the repository at this point in the history
  • Loading branch information
wasabii committed Jan 9, 2025
1 parent 1489bb0 commit 567e21c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Alethic.Auth0.Operator/Controllers/V1Controller.cs
Original file line number Diff line number Diff line change
Expand Up @@ -483,15 +483,15 @@ public async Task ReconcileAsync(TEntity entity, CancellationToken cancellationT
{
try
{
Logger.LogError(e, "Retry hit deleting {EntityTypeName} {EntityNamespace}/{EntityName}", EntityTypeName, entity.Namespace(), entity.Name());
Logger.LogError(e, "Retry hit reconciling {EntityTypeName} {EntityNamespace}/{EntityName}", EntityTypeName, entity.Namespace(), entity.Name());
await DeletingWarningAsync(entity, "Retry", e.Message, cancellationToken);
}
catch (Exception e2)
{
Logger.LogCritical(e2, "Unexpected exception creating event.");
}

Logger.LogInformation("Rescheduling delete after {TimeSpan}.", TimeSpan.FromMinutes(1));
Logger.LogInformation("Rescheduling reconcilation after {TimeSpan}.", TimeSpan.FromMinutes(1));
Requeue(entity, TimeSpan.FromMinutes(1));
}
catch (Exception e)
Expand Down

0 comments on commit 567e21c

Please sign in to comment.