-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
vttestserver should only pass a BindAddressGprc if one is passed in #17457
base: main
Are you sure you want to change the base?
Conversation
Review ChecklistHello reviewers! 👋 Please follow this checklist when reviewing this Pull Request. General
Tests
Documentation
New flags
If a workflow is added or modified:
Backward compatibility
|
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.
Thanks, @anirbanmu ! ❤️
@anirbanmu You'll need to sign your commit and force-push as described here: https://github.com/vitessio/vitess/pull/17457/checks?check_run_id=35077958638 |
…If none is passed in, it should pass nothing causing gRPC port to be bound to all interfaces (instead of just 127.0.0.1). Fixes vitessio#17396 Signed-off-by: Anirban Mukhopadhyay <[email protected]>
d6a3c3e
to
ee5b634
Compare
Thanks for the heads up! I think I've done it just now. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #17457 +/- ##
==========================================
- Coverage 67.65% 67.65% -0.01%
==========================================
Files 1584 1584
Lines 254360 254360
==========================================
- Hits 172097 172079 -18
- Misses 82263 82281 +18 ☔ View full report in Codecov by Sentry. |
If none is passed in, it should pass nothing causing gRPC port to be bound to all interfaces (instead of just 127.0.0.1).
Fixes #17396
I verified the fix using the repro script detailed here.
Description
This is making the change suggested in #17396 (comment). When there is no gRPC bind address given, we should pass nothing to the vtcombo process, so that we bind to all network interfaces rather than just 127.0.0.1 as it was doing before.
Checklist