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

Configure Feed

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

indexserver: fix wrong type in log format

+1 -1
+1 -1
cmd/zoekt-sourcegraph-indexserver/cleanup.go
··· 91 91 if len(shards) == 1 && strings.HasPrefix(filepath.Base(shards[0].Path), "compound-") { 92 92 shardsLog(indexDir, "tomb", shards, repo) 93 93 if err := zoekt.SetTombstone(shards[0].Path, repo); err != nil { 94 - log.Printf("error setting tombstone for %s in shard %s: %s. Removing shard\n", repo, shards[0], err) 94 + log.Printf("error setting tombstone for %s in shard %s: %s. Removing shard\n", repo, shards[0].Path, err) 95 95 _ = os.Remove(shards[0].Path) 96 96 } 97 97 continue