Skip to content

Commit

Permalink
RA: Replace IsCAAValid call with DoCAA (#7962)
Browse files Browse the repository at this point in the history
Replace the non-MPIC-compliant IsCAAValid VA method with the correct
MPIC-compliant DoCAA VA method when the EnforceMPIC feature is enabled.
This fixes the mistake introduced in #7870.
  • Loading branch information
beautifulentropy authored Jan 21, 2025
1 parent 87a52d6 commit c971a05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ra/ra.go
Original file line number Diff line number Diff line change
Expand Up @@ -1376,7 +1376,7 @@ func (ra *RegistrationAuthorityImpl) checkDCVAndCAA(ctx context.Context, dcvReq
return doDCVRes.Problem, doDCVRes.Records, nil
}

doCAAResp, err := ra.VA.IsCAAValid(ctx, caaReq)
doCAAResp, err := ra.VA.DoCAA(ctx, caaReq)
if err != nil {
return nil, nil, err
}
Expand Down

0 comments on commit c971a05

Please sign in to comment.