From 51a74aed1daa4cff4452d847a79a4842ce17ec86 Mon Sep 17 00:00:00 2001 From: Meredith Lancaster Date: Tue, 7 Jan 2025 15:14:23 -0700 Subject: [PATCH] Update pkg/cmd/attestation/api/client.go Co-authored-by: Phill MV --- pkg/cmd/attestation/api/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/attestation/api/client.go b/pkg/cmd/attestation/api/client.go index 9c5979d46..ca6c0f3d5 100644 --- a/pkg/cmd/attestation/api/client.go +++ b/pkg/cmd/attestation/api/client.go @@ -172,7 +172,7 @@ func (c *LiveClient) fetchBundlesByURL(attestations []*Attestation) ([]*Attestat g := errgroup.Group{} for i, a := range attestations { g.Go(func() error { - b, err := c.fetchBundleByURL(a) + b, err := c.GetBundle(url) if err != nil { return fmt.Errorf("failed to fetch bundle with URL: %w", err) }