mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-15 01:23:12 +00:00
fix rebalance/decom
This commit is contained in:
@@ -661,7 +661,10 @@ impl ReadAt for BitrotFileReader {
|
||||
}
|
||||
|
||||
if offset != self.curr_offset {
|
||||
error!("BitrotFileReader read_at offset != self.curr_offset, {} != {}", offset, self.curr_offset);
|
||||
error!(
|
||||
"BitrotFileReader read_at {}/{} offset != self.curr_offset, {} != {}",
|
||||
&self.volume, &self.file_path, offset, self.curr_offset
|
||||
);
|
||||
return Err(Error::new(DiskError::Unexpected));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user