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)

+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)