diff options
author | zeripath <art27@cantab.net> | 2022-11-15 08:08:59 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-15 16:08:59 +0800 |
commit | c772934ff623b3a76efbe306f597695330a71287 (patch) | |
tree | 4639644b2bcc0e8ee3573283c8c7190a80b24a59 /routers | |
parent | de6dfb714153c17a06406c866805a17a476c63bd (diff) | |
download | gitea-c772934ff623b3a76efbe306f597695330a71287.tar.gz gitea-c772934ff623b3a76efbe306f597695330a71287.zip |
Adjust gitea doctor --run storages to check all storage types (#21785)
The doctor check `storages` currently only checks the attachment
storage. This PR adds some basic garbage collection functionality for
the other types of storage.
Signed-off-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Diffstat (limited to 'routers')
-rw-r--r-- | routers/web/repo/lfs.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/web/repo/lfs.go b/routers/web/repo/lfs.go index 67cb6837a5..9bf4307bfe 100644 --- a/routers/web/repo/lfs.go +++ b/routers/web/repo/lfs.go @@ -478,7 +478,7 @@ func LFSPointerFiles(ctx *context.Context) { return err } if !result.Associatable { - associated, err := git_model.LFSObjectIsAssociated(pointerBlob.Oid) + associated, err := git_model.ExistsLFSObject(ctx, pointerBlob.Oid) if err != nil { return err } |