fix: add missing reconciliation status error update

This commit is contained in:
Roman Lytvyn 2021-06-04 13:48:35 +02:00
parent 8029224178
commit 989dd1567a

View File

@ -207,7 +207,10 @@ func (r *OAuth2ClientReconciler) registerOAuth2Client(ctx context.Context, c *hy
oauth2client, err := c.ToOAuth2ClientJSON()
if err != nil {
return err
if updateErr := r.updateReconciliationStatusError(ctx, c, hydrav1alpha1.StatusRegistrationFailed, err); updateErr != nil {
return updateErr
}
return nil
}
if credentials != nil {
@ -264,7 +267,10 @@ func (r *OAuth2ClientReconciler) updateRegisteredOAuth2Client(ctx context.Contex
oauth2client, err := c.ToOAuth2ClientJSON()
if err != nil {
return err
if updateErr := r.updateReconciliationStatusError(ctx, c, hydrav1alpha1.StatusRegistrationFailed, err); updateErr != nil {
return updateErr
}
return nil
}
if _, err := hydra.PutOAuth2Client(oauth2client.WithCredentials(credentials)); err != nil {