-
Notifications
You must be signed in to change notification settings - Fork 99
Change required_native_memory_bytes type to ByteSize #2740
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
Change required_native_memory_bytes type to ByteSize #2740
Conversation
6f1b9b9
into
elastic:svalbuena-issue-2739
* Change required_native_memory_bytes to ByteSize * run make --------- Co-authored-by: Max Hniebergall <[email protected]> (cherry picked from commit 6f1b9b9)
Hi @svalbuena, thanks for reporting and fixing this issue! Due to an issue with our CI, we need to have a PR from a branch in this repo to main. I've merged your PR into a local branch, and I will open a new PR to merge this new branch into main. Another PR has also been opened to backport this bugfix to the latest release. |
* Change required_native_memory_bytes to ByteSize * run make --------- Co-authored-by: Max Hniebergall <[email protected]> (cherry picked from commit 6f1b9b9) Co-authored-by: Sergi Valbuena Garrido <[email protected]>
* Change required_native_memory_bytes to ByteSize * run make --------- Co-authored-by: Sergi Valbuena Garrido <[email protected]>
Your changes have been merged. Thanks for this contribution, and congrats on merging your first elastic PR! |
Thank you! Whats the process of updating the .net client repo with the new autogenerated code? @maxhniebergall |
@svalbuena, because we backported the code to v8.15.0, the new generated client code will be available with the v8.15.0 release which is happening very soon. |
Fixes #2739. The required_native_memory_bytes represents a value in bytes, an integer is too small to fit the range, and other bytes parameters in the spec are already using the ByteSyze type.