Merge pull request #195 from rustfs/wip-dandan

fix remote err && lock err
This commit is contained in:
junxiangMu
2024-12-30 11:39:24 +08:00
committed by GitHub
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1561,7 +1561,7 @@ impl Reader for RemoteFileReader {
path: self.path.to_string(),
offset: offset.try_into().unwrap(),
// length: length.try_into().unwrap(),
length: 0,
length: buf.len().try_into().unwrap(),
};
self.tx.send(request).await?;