-
Notifications
You must be signed in to change notification settings - Fork 928
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
Remove deprecated from description of kyuubi.frontend.bind.host #4005
Conversation
@@ -385,7 +385,7 @@ object KyuubiConf { | |||
.createWithDefault(Seq(FrontendProtocols.THRIFT_BINARY.toString)) | |||
|
|||
val FRONTEND_BIND_HOST: OptionalConfigEntry[String] = buildConf("kyuubi.frontend.bind.host") | |||
.doc("(deprecated) Hostname or IP of the machine on which to run the thrift frontend service " + | |||
.doc("Hostname or IP of the machine on which to run the thrift frontend service " + |
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.
Not thrift only?
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.
Yes, updated.
Codecov Report
@@ Coverage Diff @@
## master #4005 +/- ##
============================================
- Coverage 52.11% 52.08% -0.03%
Complexity 13 13
============================================
Files 541 541
Lines 29468 29468
Branches 3938 3938
============================================
- Hits 15357 15349 -8
- Misses 12709 12715 +6
- Partials 1402 1404 +2
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
…bind.host ### _Why are the changes needed?_ Unlike `kyuubi.frontend.bind.port`, which is deprecated and replaced by `kyuubi.frontend.thrift.binary.bind.port`, `kyuubi.frontend.bind.host` is still encouraged to use, and it can be overwritten by `kyuubi.frontend.<protocol>.bind.host`, e.g. `kyuubi.frontend.thrift.binary.bind.host`, `kyuubi.frontend.thrift.http.bind.host`, `kyuubi.frontend.rest.bind.host`, `kyuubi.frontend.mysql.bind.host` ### _How was this patch tested?_ - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible - [ ] Add screenshots for manual tests if appropriate - [x] [Run test](https://kyuubi.apache.org/docs/latest/develop_tools/testing.html#running-tests) locally before make a pull request Closes #4005 from pan3793/doc. Closes #4005 9c3b127 [Cheng Pan] comments 0ef140e [Cheng Pan] Remove deprecated from description of kyuubi.frontend.bind.host Authored-by: Cheng Pan <chengpan@apache.org> Signed-off-by: Cheng Pan <chengpan@apache.org> (cherry picked from commit 6e5803c) Signed-off-by: Cheng Pan <chengpan@apache.org>
Why are the changes needed?
Unlike
kyuubi.frontend.bind.port
, which is deprecated and replaced bykyuubi.frontend.thrift.binary.bind.port
,kyuubi.frontend.bind.host
is still encouraged to use, and it can be overwritten bykyuubi.frontend.<protocol>.bind.host
, e.g.kyuubi.frontend.thrift.binary.bind.host
,kyuubi.frontend.thrift.http.bind.host
,kyuubi.frontend.rest.bind.host
,kyuubi.frontend.mysql.bind.host
How was this patch tested?
Add some test cases that check the changes thoroughly including negative and positive cases if possible
Add screenshots for manual tests if appropriate
Run test locally before make a pull request