-
Notifications
You must be signed in to change notification settings - Fork 752
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
tls rpc #1290
tls rpc #1290
Conversation
Thanks for the contribution! Please review the labels and make any necessary changes. |
Codecov Report
@@ Coverage Diff @@
## master #1290 +/- ##
=======================================
Coverage 72% 72%
=======================================
Files 475 478 +3
Lines 27558 27843 +285
=======================================
+ Hits 19907 20170 +263
- Misses 7651 7673 +22
Continue to review full report at Codecov.
|
Hello @dantengsky, 🎉 Thank you for opening the pull request! 🎉 |
Great. |
roger, I will take a look into 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.
LGTM
CI Passed |
} | ||
|
||
impl RpcService { | ||
pub fn create(sessions: SessionManagerRef) -> Box<dyn FuseQueryServer> { | ||
pub fn create(conf: Config, sessions: SessionManagerRef) -> Box<dyn FuseQueryServer> { |
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 change conf to sessions.get_conf()
is better?
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.
right! I will expose get_conf from sessions
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.
right! I will expose get_conf from sessions
} | ||
|
||
impl RpcService { | ||
pub fn create(sessions: SessionManagerRef) -> Box<dyn FuseQueryServer> { | ||
pub fn create(conf: Config, sessions: SessionManagerRef) -> Box<dyn FuseQueryServer> { |
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.
right! I will expose get_conf from sessions
I hereby agree to the terms of the CLA available at: https://datafuse.rs/policies/cla/
Summary
TLS RPC for Query and Store services/clients
stateless-cluster-test-tls
scripts/ci/ci-run-stateless-tests-cluster.sh
with all the tls rpc enabledNote:
please rm
_meta/
_logs/
beforemake stateless-cluster-test-tls
Changelog
Related Issues
Fixes #599
Test Plan
Unit Tests
Stateless Tests
Tasks