Skip to content

Commit

Permalink
address pr comment
Browse files Browse the repository at this point in the history
  • Loading branch information
efd6 committed Sep 20, 2024
1 parent 3828962 commit 5d34c42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/filebeat/input/streaming/crowdstrike.go
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ func (s *falconHoseStream) followSession(ctx context.Context, cli *http.Client,
}
feedQuery, err := url.ParseQuery(feedURL.RawQuery)
if err != nil {
return state, Warning{fmt.Errorf("failed to parse feed query: %v", err)}
return state, Warning{fmt.Errorf("failed to parse feed query: %w", err)}
}
feedQuery.Set("offset", strconv.Itoa(offset))
feedURL.RawQuery = feedQuery.Encode()
Expand Down

0 comments on commit 5d34c42

Please sign in to comment.