0
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-11-01 20:06:40 +01:00
This commit is contained in:
wxiaoguang 2025-10-30 01:14:13 +08:00
parent 0aa7967488
commit 18b5b7a3de
2 changed files with 4 additions and 4 deletions

View File

@ -24,7 +24,7 @@ type Blob struct {
// DataAsync gets a ReadCloser for the contents of a blob without reading it all.
// Calling the Close function on the result will discard all unread output.
func (b *Blob) DataAsync() (_ io.ReadCloser, retErr error) {
batch, cancel, err := b.repo.CatFileBatch(b.repo.Ctx, true) // not related
batch, cancel, err := b.repo.CatFileBatch(b.repo.Ctx, false) // not related
if err != nil {
return nil, err
}
@ -57,7 +57,7 @@ func (b *Blob) Size() int64 {
return b.size
}
batch, cancel, err := b.repo.CatFileBatch(b.repo.Ctx, true) // not related
batch, cancel, err := b.repo.CatFileBatch(b.repo.Ctx, false) // not related
if err != nil {
log.Debug("error whilst reading size for %s in %s. Error: %v", b.ID.String(), b.repo.Path, err)
return 0

View File

@ -23,7 +23,7 @@ func (repo *Repository) IsObjectExist(name string) bool {
return false
}
batch, cancel, err := repo.CatFileBatch(repo.Ctx, true) // not related
batch, cancel, err := repo.CatFileBatch(repo.Ctx, false) // not related
if err != nil {
log.Debug("Error writing to CatFileBatchCheck %v", err)
return false
@ -44,7 +44,7 @@ func (repo *Repository) IsReferenceExist(name string) bool {
return false
}
batch, cancel, err := repo.CatFileBatch(repo.Ctx, true) // not related
batch, cancel, err := repo.CatFileBatch(repo.Ctx, false) // not related
if err != nil {
log.Debug("Error writing to CatFileBatchCheck %v", err)
return false