diff --git a/libs/remote_storage/src/azure_blob.rs b/libs/remote_storage/src/azure_blob.rs index ac2664b81a..4f7c8ce6f4 100644 --- a/libs/remote_storage/src/azure_blob.rs +++ b/libs/remote_storage/src/azure_blob.rs @@ -341,7 +341,7 @@ impl RemoteStorage for AzureBlobStorage { // to still be representable by signed 64 bit integers). // TODO remove workaround once the SDK adds open range support // https://github.com/Azure/azure-sdk-for-rust/issues/1438 - let end_exclusive = u64::MAX << 4; + let end_exclusive = u64::MAX / 4; builder = builder.range(Range::new(start_inclusive, end_exclusive)); }