shithub: furgit

Download patch

ref: 318f7be691ba6be150e4a7b30c8bc9e1f2521d38
parent: b82af688be4d94245c4a7eb730b12348b08b414b
author: Runxi Yu <runxiyu@umich.edu>
date: Mon Mar 30 23:20:22 EDT 2026

repository: Pass the fetcher to reachability

--- a/repository/reachability.go
+++ b/repository/reachability.go
@@ -10,5 +10,5 @@
 //
 // Labels: Life-Parent.
 func (repo *Repository) Reachability() *reachability.Reachability {
-	return reachability.New(repo.objects, repo.commitGraph)
+	return reachability.New(repo.fetcher, repo.commitGraph)
 }
--