From 2c1421fe784a002494776ea5ed38df64877cc509 Mon Sep 17 00:00:00 2001 From: Samantha Date: Fri, 22 Nov 2024 09:41:44 -0500 Subject: [PATCH] Adjust TODO issue. --- va/va.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/va/va.go b/va/va.go index e4ecbf28a66..a9ddcae1528 100644 --- a/va/va.go +++ b/va/va.go @@ -239,7 +239,7 @@ func NewValidationAuthorityImpl( for i, va1 := range remoteVAs { for j, va2 := range remoteVAs { - // TODO(#7615): Remove the != "" check once perspective is required. + // TODO(#7819): Remove the != "" check once perspective is required. if i != j && va1.Perspective == va2.Perspective && va1.Perspective != "" { return nil, fmt.Errorf("duplicate remote VA perspective %q", va1.Perspective) }