We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93db466 commit 4cad02fCopy full SHA for 4cad02f
src/commands/dataset/download.rs
@@ -144,6 +144,11 @@ async fn download_partition_file(
144
dataset_name: &str,
145
file_node: GetDatasetVersionFilesNodeOnDatasetVersionFilesNodes,
146
) -> Result<()> {
147
+ let mut client = client.clone();
148
+ client.s3_layer(aqora_client::checksum::S3ChecksumLayer::new(
149
+ aqora_client::checksum::crc32fast::Crc32::new(),
150
+ ));
151
+
152
let (metadata, url) = match client.s3_head(file_node.url.clone()).await {
153
Ok(metadata) => (metadata, file_node.url.clone()),
154
// retry if presigned url expired due to long dataset download time
0 commit comments