Skip to content

Commit

Permalink
Fix typo in crawler initialize error (#8617)
Browse files Browse the repository at this point in the history
  • Loading branch information
robin13 authored and andrewvc committed Oct 24, 2018
1 parent 3e1b03e commit 948c17b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion filebeat/crawler/crawler.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ func (c *Crawler) startInput(
connector := channel.ConnectTo(pipeline, c.out)
p, err := input.New(config, connector, c.beatDone, states, nil)
if err != nil {
return fmt.Errorf("Error in initing input: %s", err)
return fmt.Errorf("Error while initializing input: %s", err)
}
p.Once = c.once

Expand Down

0 comments on commit 948c17b

Please sign in to comment.