This is an automated email from the ASF dual-hosted git repository. dheres pushed a commit to branch downgrade-tonic in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
commit dacced60f36e3888174f40ae1945d1dbca707188 Author: Andrew Lamb <[email protected]> AuthorDate: Mon Dec 2 06:56:21 2024 -0500 Revert "fix: enable TLS roots for flight CLI client (#6640)" This reverts commit 2983dc124f4472859cc328d0652a872d7e67248b. --- arrow-flight/src/bin/flight_sql_client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arrow-flight/src/bin/flight_sql_client.rs b/arrow-flight/src/bin/flight_sql_client.rs index 7b9e34898a..8f0618f495 100644 --- a/arrow-flight/src/bin/flight_sql_client.rs +++ b/arrow-flight/src/bin/flight_sql_client.rs @@ -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")?;
