mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
fix: fixes unkeyed composite literal (#2168)
Co-authored-by: Christopher Lowenthal <christopher.lowenthal@molecula.com>
This commit is contained in:
parent
f07dc61617
commit
e61ef2a4da
1 changed files with 1 additions and 1 deletions
|
|
@ -206,7 +206,7 @@ func (s *Source) Open() error {
|
|||
for _, topic := range s.Topics {
|
||||
config := config
|
||||
config.Topic = topic
|
||||
readers[topic] = internal.RetryReader{segmentio.NewReader(config)} //nolint:govet
|
||||
readers[topic] = internal.RetryReader{Reader: segmentio.NewReader(config)}
|
||||
}
|
||||
|
||||
// Throw the readers into a blender.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue