(
_bucket: &str,
_client_options: &ClientOptions,
)
| 54 | // Provide a local mock when running tests so we don't make network calls |
| 55 | #[cfg(test)] |
| 56 | async fn resolve_bucket_region( |
| 57 | _bucket: &str, |
| 58 | _client_options: &ClientOptions, |
| 59 | ) -> object_store::Result<String> { |
| 60 | Ok("eu-central-1".to_string()) |
| 61 | } |
| 62 | |
| 63 | pub async fn get_s3_object_store_builder( |
| 64 | url: &Url, |
no test coverage detected
searching dependent graphs…