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

Configure Feed

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

Fix outdated log line (#831)

Tiny follow up to https://github.com/sourcegraph/zoekt/pull/826. I resolved a conflict incorrectly and reverted a log line improvement.

+2 -2
+2 -2
read.go
··· 128 128 // If we don't recognize the section, we may be reading a newer index than the current version. Use 129 129 // a "dummy section" struct to skip over it. 130 130 skipSection = true 131 - log.Printf("encountered malformed index section (%s), skipping over it", tag) 131 + log.Printf("encountered unrecognized index section (%s), skipping over it", tag) 132 132 133 133 switch sectionKind(kind) { 134 134 case sectionKindSimple: 135 135 sec = &simpleSection{} 136 136 case sectionKindCompound: 137 - sec = &lazyCompoundSection{} 137 + sec = &compoundSection{} 138 138 case sectionKindCompoundLazy: 139 139 sec = &lazyCompoundSection{} 140 140 default: