From c971a053a2e20a04c42bf53f3cbac8f9632a5bf6 Mon Sep 17 00:00:00 2001 From: Samantha Frank Date: Tue, 21 Jan 2025 14:31:48 -0500 Subject: [PATCH] RA: Replace IsCAAValid call with DoCAA (#7962) 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. --- ra/ra.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ra/ra.go b/ra/ra.go index f8f9fd7a16f..08f61dbf24c 100644 --- a/ra/ra.go +++ b/ra/ra.go @@ -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 }