Skip to content

Commit c725e6d

Browse files
committed
test2
1 parent 0aa7967 commit c725e6d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

modules/git/repo_tree_nogogit.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
)
1111

1212
func (repo *Repository) getTree(id ObjectID) (*Tree, error) {
13-
batch, cancel, err := repo.CatFileBatch(repo.Ctx, true)
13+
batch, cancel, err := repo.CatFileBatch(repo.Ctx, false) //test
1414
if err != nil {
1515
return nil, err
1616
}

modules/git/tree_entry_nogogit.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ func (te *TreeEntry) Size() int64 {
3636
return te.size
3737
}
3838

39-
batch, cancel, err := te.ptree.repo.CatFileBatch(te.ptree.repo.Ctx, true)
39+
batch, cancel, err := te.ptree.repo.CatFileBatch(te.ptree.repo.Ctx, false) //test
4040
if err != nil {
4141
log.Debug("error whilst reading size for %s in %s. Error: %v", te.ID.String(), te.ptree.repo.Path, err)
4242
return 0

modules/git/tree_nogogit.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ func (t *Tree) ListEntries() (Entries, error) {
3535
}
3636

3737
if t.repo != nil {
38-
batch, cancel, err := t.repo.CatFileBatch(t.repo.Ctx, true)
38+
batch, cancel, err := t.repo.CatFileBatch(t.repo.Ctx, false) //test
3939
if err != nil {
4040
return nil, err
4141
}

0 commit comments

Comments
 (0)