fix: add missing reconciliation status error update
This commit is contained in:
parent
8029224178
commit
989dd1567a
@ -207,7 +207,10 @@ func (r *OAuth2ClientReconciler) registerOAuth2Client(ctx context.Context, c *hy
|
|||||||
|
|
||||||
oauth2client, err := c.ToOAuth2ClientJSON()
|
oauth2client, err := c.ToOAuth2ClientJSON()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
if updateErr := r.updateReconciliationStatusError(ctx, c, hydrav1alpha1.StatusRegistrationFailed, err); updateErr != nil {
|
||||||
|
return updateErr
|
||||||
|
}
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
if credentials != nil {
|
if credentials != nil {
|
||||||
@ -264,7 +267,10 @@ func (r *OAuth2ClientReconciler) updateRegisteredOAuth2Client(ctx context.Contex
|
|||||||
|
|
||||||
oauth2client, err := c.ToOAuth2ClientJSON()
|
oauth2client, err := c.ToOAuth2ClientJSON()
|
||||||
if err != nil {
|
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 {
|
if _, err := hydra.PutOAuth2Client(oauth2client.WithCredentials(credentials)); err != nil {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user