From c22a38da9a9b6340fdb94d88447cdfb0429ed763 Mon Sep 17 00:00:00 2001 From: qhd <1766646056@qq.com> Date: Wed, 24 Jun 2026 16:17:25 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=BF=BD=E7=95=A5=E4=B8=8B=E8=BD=BD?= =?UTF-8?q?=E9=94=99=E8=AF=AF=E4=BB=A5=E9=81=BF=E5=85=8D=E4=BB=BB=E5=8A=A1?= =?UTF-8?q?=E8=AF=AF=E5=A4=B1=E8=B4=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- service/task/worker.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/service/task/worker.go b/service/task/worker.go index 4737274..8816381 100644 --- a/service/task/worker.go +++ b/service/task/worker.go @@ -74,7 +74,8 @@ func (w *asyncWorker) handleOne(ctx context.Context, task *entity.ModelGatewayTa if !strings.Contains(err.Error(), "Timeout") && !strings.Contains(err.Error(), "InternalServiceError") && !strings.Contains(err.Error(), "Invalid video_url") && - !strings.Contains(err.Error(), "Invalid audio track") { + !strings.Contains(err.Error(), "Invalid audio track") && + !strings.Contains(err.Error(), "Error while downloading") { w.failTask(ctx, task, startTime, err.Error()) return }