| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
…t-dev#6435) PR feast-dev#6015 replaced MessageToDict with a custom dict builder in feature_server.py, which incidentally fixed the crash caused by the removed float_precision kwarg in protobuf >= 7.34.0. Add explicit regression tests to prevent reintroduction: - Verify convert_response_to_dict never calls MessageToDict - Verify double precision round-trips without float_precision kwarg Fixes feast-dev#6435 Assisted-by: Claude Opus 4.6 Signed-off-by: Jonathan Wrede <wrede.jonathan00@gmail.com>
| Back | FazBrowse Home | New Git URL |
What this PR does / why we need it:
Adds regression tests to guard against reintroduction of the float_precision kwarg usage that was removed in PR #6015. The MessageToDict(float_precision=...) call caused feature_server.py to crash on protobuf >= 7.34.0 (see #6435). While the fix landed in #6015, there were no tests preventing reintroduction.
Two tests added:
Which issue(s) this PR fixes:
Fixes #6435
Checks
Testing Strategy