Skip to content
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

arrow 53.4.0 with downgraded tonic / prost #8

Open
wants to merge 3 commits into
base: 53.4.0_base
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert "fix: enable TLS roots for flight CLI client (apache#6640)"
This reverts commit 2983dc1.
alamb committed Feb 1, 2025
commit 9fade5f3eff82fd1e1dd8efbf18b0f770c1929b4
2 changes: 1 addition & 1 deletion arrow-flight/src/bin/flight_sql_client.rs
Original file line number Diff line number Diff line change
@@ -357,7 +357,7 @@ async fn setup_client(args: ClientArgs) -> Result<FlightSqlServiceClient<Channel
.keep_alive_while_idle(true);

if args.tls {
let tls_config = ClientTlsConfig::new().with_enabled_roots();
let tls_config = ClientTlsConfig::new();
endpoint = endpoint
.tls_config(tls_config)
.context("create TLS endpoint")?;