refactor: use clearer name for fetcher function
1 file changed, 1 insertion(+), 1 deletion(-)
changed files
M cmd/searchix-web/ingest.go → cmd/searchix-web/ingest.go
@@ -75,7 +75,7 @@ return fault.Wrap(err, fmsg.With("Failed to create importer")) } if !exists || opts.Replace || opts.Fetch { - err = imp.Start(ctx, true, opts.Fetch && !opts.Replace, nil) + err = imp.Fetch(ctx, true, opts.Fetch && !opts.Replace, nil) if err != nil { return fault.Wrap(err, fmsg.With("Failed to start importer")) }