-
Notifications
You must be signed in to change notification settings - Fork 720
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
mcs: change the get member return value #7819
Conversation
[REVIEW NOTIFICATION] This pull request has been approved by:
To complete the pull request process, please ask the reviewers in the list to review by filling The full list of commands accepted by this bot can be found here. Reviewer can indicate their review by submitting an approval review. |
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.
most LGTM, maybe need to change tidb-operator
and inform testbed as well
Will do it later. |
f5dd49b
to
dccb195
Compare
@@ -592,3 +592,12 @@ type MembersInfo struct { | |||
Leader *pdpb.Member `json:"leader,omitempty"` | |||
EtcdLeader *pdpb.Member `json:"etcd_leader,omitempty"` | |||
} | |||
|
|||
// MicroServiceMember is the member info of a micro service. | |||
type MicroServiceMember struct { |
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.
ServiceRegistryEntry and MicroServiceMember should be always the same? We need to add some comments to avoid inconsistent after late modification.
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.
make their name unified
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## master #7819 +/- ##
==========================================
+ Coverage 73.39% 73.46% +0.07%
==========================================
Files 432 432
Lines 47879 47896 +17
==========================================
+ Hits 35141 35188 +47
+ Misses 9687 9659 -28
+ Partials 3051 3049 -2
Flags with carried forward coverage won't be shown. Click here to find out more. |
Signed-off-by: Ryan Leung <rleungx@gmail.com>
f98f97f
to
763d50a
Compare
5232ff9
to
76ef427
Compare
626782e
to
685db6b
Compare
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.
the rest LGTM
s.serviceID = &discovery.ServiceRegistryEntry{ServiceAddr: s.cfg.AdvertiseListenAddr} | ||
deployPath, err := os.Executable() | ||
if err != nil { | ||
deployPath = "" |
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 need to add a log about it?
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.
maybe later if needed
s.serviceID = &discovery.ServiceRegistryEntry{ServiceAddr: s.cfg.AdvertiseListenAddr} | ||
deployPath, err := os.Executable() | ||
if err != nil { | ||
deployPath = "" |
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.
ditto
Passed the test with pingcap/tidb-operator#5547 |
/merge |
@rleungx: It seems you want to merge this PR, I will help you trigger all the tests: /run-all-tests You only need to trigger
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the ti-community-infra/tichi repository. |
This pull request has been accepted and is ready to merge. Commit hash: 685db6b
|
@rleungx: Your PR was out of date, I have automatically updated it for you. If the CI test fails, you just re-trigger the test that failed and the bot will merge the PR for you after the CI passes. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the ti-community-infra/tichi repository. |
What problem does this PR solve?
Issue Number: Ref #5839.
What is changed and how does it work?
tidb-dashborad needs more information besides the address, it's better to use the member api.
Check List
Tests
Release note