diff --git a/src/storage.rs b/src/storage.rs index ef0f0c4..751e4f1 100644 --- a/src/storage.rs +++ b/src/storage.rs @@ -140,7 +140,9 @@ impl StorageApi { } pub(crate) async fn new_write_client() -> Result, BQError> { - let tls_config = ClientTlsConfig::new().domain_name(BIGQUERY_STORAGE_API_DOMAIN); + let tls_config = ClientTlsConfig::new() + .domain_name(BIGQUERY_STORAGE_API_DOMAIN) + .with_native_roots(); let channel = Channel::from_static(BIG_QUERY_STORAGE_API_URL) .tls_config(tls_config)? .connect()