fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

Select the types of activity you want to include in your feed.

indexserver: reindex is not working due to incorrect ctx propagation (#1066)

author
Michael Lin
committer
GitHub
date (May 28, 2026, 7:57 AM +0200) commit 3b6cf8a9 parent 071adfde
+1 -1
+1 -1
cmd/zoekt-sourcegraph-indexserver/main.go
··· 912 912 return 913 913 } 914 914 915 - go func() { s.forceIndex(r.Context(), uint32(id)) }() 915 + go func() { s.forceIndex(context.Background(), uint32(id)) }() 916 916 917 917 // 202 Accepted 918 918 w.WriteHeader(http.StatusAccepted)