refactor: move HTTP range helper contracts (#3533)

This commit is contained in:
安正超
2026-06-18 00:47:23 +08:00
committed by GitHub
parent cc84d9065e
commit 53337a6f71
27 changed files with 270 additions and 150 deletions
+1 -1
View File
@@ -300,7 +300,7 @@ async fn create_dlo_stream(
async move {
let range_spec = if byte_start > 0 || byte_end < segment.size as u64 - 1 {
Some(rustfs_ecstore::store_api::HTTPRangeSpec {
Some(rustfs_storage_api::HTTPRangeSpec {
is_suffix_length: false,
start: byte_start as i64,
end: byte_end as i64,