mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-11-23 18:49:17 +08:00
fix compilation
This commit is contained in:
parent
1c143cfcea
commit
75f5afa571
@ -201,8 +201,9 @@ func (s *Store) readOneEcShardInterval(needleId types.NeedleId, ecVolume *erasur
|
||||
shardId, actualOffset := interval.ToShardIdAndOffset(erasure_coding.ErasureCodingLargeBlockSize, erasure_coding.ErasureCodingSmallBlockSize)
|
||||
data = make([]byte, interval.Size)
|
||||
if shard, found := ecVolume.FindEcVolumeShard(shardId); found {
|
||||
if n, err = shard.ReadAt(data, actualOffset); err != nil {
|
||||
if n != interval.Size {
|
||||
var readSize int
|
||||
if readSize, err = shard.ReadAt(data, actualOffset); err != nil {
|
||||
if readSize != int(interval.Size) {
|
||||
glog.V(0).Infof("read local ec shard %d.%d offset %d: %v", ecVolume.VolumeId, shardId, actualOffset, err)
|
||||
return
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user