-
Notifications
You must be signed in to change notification settings - Fork 935
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
feat: metadata port reuse #2538
Conversation
0f542bb
to
dd3afba
Compare
Please commit to Branch 3.1 |
dd3afba
to
e3af8f5
Compare
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## release-3.1 #2538 +/- ##
===============================================
- Coverage 44.91% 44.73% -0.18%
===============================================
Files 270 270
Lines 18354 18355 +1
===============================================
- Hits 8243 8211 -32
- Misses 9225 9262 +37
+ Partials 886 882 -4 ☔ View full report in Codecov by Sentry. |
7038aa8
to
dd586fb
Compare
dd586fb
to
d85d843
Compare
protocolConfig, ok := config.GetRootConfig().Protocols[constant.DefaultProtocol] | ||
if !ok { | ||
protocolConfig = config.NewProtocolConfigBuilder(). | ||
SetName(constant.DefaultProtocol). | ||
SetPort(strconv.Itoa(config.GetApplicationConfig().MetadataServicePort)). | ||
Build() | ||
} |
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.
If the user sets the MetadataServicePort, should we use that port?
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.
consistent with java
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.
since we want reuse dubbo protocol port, I think the priority should be
- MetadataServicePort
- dubbo protocol port set by user or default
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.
use default port,ci fail
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.
use default port,ci fail
why
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.
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.
please create a new branch to show how you use default port,I want to know why ci failed
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.
d85d843
to
0911ed7
Compare
0911ed7
to
937bb73
Compare
d08bf0f
to
3dc7598
Compare
3dc7598
to
813469b
Compare
813469b
to
45b2ee7
Compare
Quality Gate passedKudos, no new issues were introduced! 0 New issues |
#2537