From 2d610975e8c1e85b76ba4c12d776478923df2839 Mon Sep 17 00:00:00 2001 From: fantasticbin Date: Sun, 2 Mar 2025 21:19:10 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9B=A0errgroup=E4=B8=8D=E6=94=AF=E6=8C=81?= =?UTF-8?q?=E9=87=8D=E7=94=A8=EF=BC=8C=E6=95=85=E8=B0=83=E6=95=B4=E4=B8=BA?= =?UTF-8?q?=E6=AF=8F=E6=AC=A1=E6=89=A7=E8=A1=8C=E6=97=B6=E6=96=B0=E8=B5=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crawler.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crawler.go b/crawler.go index 92af2ed..97d4b34 100644 --- a/crawler.go +++ b/crawler.go @@ -21,7 +21,6 @@ type Crawler struct { avPath string outputPath string config *viper.Viper - g errgroup.Group } func NewCrawler(avPath, outputPath string) *Crawler { @@ -220,8 +219,9 @@ func (c *Crawler) Handle() error { return err } + var g errgroup.Group for _, cover := range coverList { - c.g.Go(func() error { + g.Go(func() error { if err := c.fetchCoverImg(cover); err != nil { return err } @@ -230,5 +230,5 @@ func (c *Crawler) Handle() error { }) } - return c.g.Wait() + return g.Wait() }