ritchie46 opened a new issue, #4991: URL: https://github.com/apache/arrow-rs/issues/4991
**Describe the bug** Backported from: https://github.com/pola-rs/polars/issues/12006 ```rust use object_store::gcp::GoogleCloudStorageBuilder; pub fn run() -> Option<()> { GoogleCloudStorageBuilder::new() .with_url("gs://example.com/test.parquet") .build().unwrap(); Some(()) } ``` The snippet above does not run, because of the `.` in the bucket url. According to the [docs](https://cloud.google.com/storage/docs/buckets), they should be allowed, but require some extra [verification](https://cloud.google.com/storage/docs/domain-name-verification). **Expected behavior** Expected the builder to accept the URL. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
