-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix tag on failure test #52
Conversation
Field Reference can handle special characters in 8.3.0
@logstashmachine bump patch |
if (Gem::Requirement.create('>= 7.0').satisfied_by?(logstash_version) || | ||
|
||
# Field Reference can handle special characters since 8.3.0 | ||
if ((Gem::Requirement.create('>= 7.0').satisfied_by?(logstash_version) && Gem::Requirement.create('< 8.3').satisfied_by?(logstash_version)) || |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we have or can we add test cases for 8.3+ LS versions?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we have existing test for tagging json fail for 8.3+
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Field Reference can handle special characters in 8.3.0. This commit excludes the failed test from 8.3+
Related:
elastic/logstash#11941
Close #55