Skip to content

Commit 14a05d3

Browse files
authored
Exempt ARI renewals from on-demand blocklisting (#8655)
1 parent 66c2caf commit 14a05d3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

wfe2/wfe.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2400,7 +2400,7 @@ func (wfe *WebFrontEndImpl) NewOrder(
24002400
isRenewal = len(timestamps.Timestamps) > 0
24012401
}
24022402

2403-
if !isRenewal {
2403+
if !isRenewal && !isARIRenewal {
24042404
err = looksLikeRecursiveOnDemandRequest(idents, wfe.blockedOnDemandLabels)
24052405
if err != nil {
24062406
wfe.sendError(response, logEvent, web.ProblemDetailsForError(err, "Disallowed identifier requested"), nil)

0 commit comments

Comments
 (0)