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

Configure Feed

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

ci: fix fmt string errors (#994)

I think these snuck in as we changed go versions

+2 -2
+1 -1
cmd/zoekt-sourcegraph-indexserver/main.go
··· 385 385 // "pkill -SIGUSR1 zoekt-sourcegra" 386 386 for range jitterTicker(s.Interval, unix.SIGUSR1) { 387 387 if paused, msg := isIndexingPaused(s.IndexDir); paused { 388 - infoLog.Printf(msg) 388 + infoLog.Printf("%s", msg) 389 389 continue 390 390 } 391 391
+1 -1
cmd/zoekt-sourcegraph-indexserver/queue_test.go
··· 190 190 // test: send a request to the queue's debug endpoint 191 191 response, err := http.Get(server.URL) 192 192 if err != nil { 193 - t.Fatalf(err.Error()) 193 + t.Fatalf("%s", err.Error()) 194 194 } 195 195 196 196 defer response.Body.Close()