From 7bb37b3f680f2cc8f7e072ad16d18bc6a5a65895 Mon Sep 17 00:00:00 2001 From: wxiaoguang Date: Fri, 11 Aug 2023 06:42:48 +0800 Subject: [PATCH] Call git.InitSimple for runRepoSyncReleases (#26396) Fix #26394 Otherwise, the git module is not initialized and it doesn't respect the "timeout" config in app.ini --- cmd/admin.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cmd/admin.go b/cmd/admin.go index f9fb1b6c68f07..160cb5c00ff79 100644 --- a/cmd/admin.go +++ b/cmd/admin.go @@ -348,6 +348,10 @@ func runRepoSyncReleases(_ *cli.Context) error { return err } + if err := git.InitSimple(ctx); err != nil { + return err + } + log.Trace("Synchronizing repository releases (this may take a while)") for page := 1; ; page++ { repos, count, err := repo_model.SearchRepositoryByName(ctx, &repo_model.SearchRepoOptions{