A fork of attic a self-hostable Nix Binary Cache server
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Disable explicit setting of checksum due to improper implementation and issues being caused with Garage

roufpup 92dc1b6c 12cbeca1

+7 -4
+7 -4
server/src/storage/s3.rs
··· 278 278 CompletedPart::builder() 279 279 .set_e_tag(part.e_tag().map(str::to_string)) 280 280 .set_part_number(Some(part_number as i32)) 281 - .set_checksum_crc32(part.checksum_crc32().map(str::to_string)) 282 - .set_checksum_crc32_c(part.checksum_crc32_c().map(str::to_string)) 283 - .set_checksum_sha1(part.checksum_sha1().map(str::to_string)) 284 - .set_checksum_sha256(part.checksum_sha256().map(str::to_string)) 281 + // Disable explicit setting of checksum due to improper implementation and issues being caused with Garage 282 + // https://github.com/zhaofengli/attic/pull/268 for more information 283 + // 284 + // .set_checksum_crc32(part.checksum_crc32().map(str::to_string)) 285 + // .set_checksum_crc32_c(part.checksum_crc32_c().map(str::to_string)) 286 + // .set_checksum_sha1(part.checksum_sha1().map(str::to_string)) 287 + // .set_checksum_sha256(part.checksum_sha256().map(str::to_string)) 285 288 .build() 286 289 }) 287 290 .collect::<Vec<_>>();