fix: return original error if no reconciliation update error

This commit is contained in:
Roman Lytvyn 2021-06-04 14:36:15 +02:00
parent 9f58744fe5
commit cd33789adc

View File

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