-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
Converter processor: add support for large hexadecimal strings #9160
Conversation
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.
🤝 ✅ CLA has been signed. Thank you!
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.
Looks like new artifacts were built from this PR. Get them here!
Artifact URLs
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.
Looks good
Looks like new artifacts were built from this PR. Get them here!Artifact URLs |
* add oauth2 to http input * reset not included changes * reset not included changes * reset not included changes * add hexadecimal parser changes * add linter changes * add documentation note (cherry picked from commit 79b1ac1)
…xdata#9160) * add oauth2 to http input * reset not included changes * reset not included changes * reset not included changes * add hexadecimal parser changes * add linter changes * add documentation note (cherry picked from commit 79b1ac1)
Large hexadecimal numbers don't seem to work right with the current
ParseFloat
method. I'm adding this functionality so that any size hexadecimal string can be converted to a float64.Keep in mind that if the string is large, you should use the 'float' conversion and not an 'integer' conversion, as it will likely overflow and return the max int64 value.
resolves #9147