Skip to content

Commit

Permalink
lint: workaround linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kruskall authored Jun 8, 2024
1 parent 3a56bb4 commit 122cd56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/beater/beater.go
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ func (s *Runner) waitReady(
return fmt.Errorf("error getting Elasticsearch licensing information: %w", err)
}
if licenser.IsExpired(license) {
return errors.New("Elasticsearch license is expired")
return errors.New("the Elasticsearch license is expired")
}
if license.Type == licenser.Trial || license.Cover(requiredLicenseLevel) {
return nil
Expand Down

0 comments on commit 122cd56

Please sign in to comment.