Browse Source

fix(volume.fix.replication): adjust volume count, not free volume count (#5479)

(cherry picked from commit 67ead9b18f)
pull/5936/head
steve.wei 10 months ago
committed by chuanhai.wei
parent
commit
8ebcd18b56
  1. 8
      weed/shell/command_volume_fix_replication.go

8
weed/shell/command_volume_fix_replication.go

@ -302,8 +302,8 @@ func (c *commandVolumeFixReplication) fixOneUnderReplicatedVolume(commandEnv *Co
fmt.Fprintf(writer, "replicating volume %d %s from %s to dataNode %s ...\n", replica.info.Id, replicaPlacement, replica.location.dataNode.Id, dst.dataNode.Id)
if !takeAction {
// adjust free volume count
dst.dataNode.DiskInfos[replica.info.DiskType].FreeVolumeCount--
// adjust volume count
dst.dataNode.DiskInfos[replica.info.DiskType].VolumeCount++
break
}
@ -337,8 +337,8 @@ func (c *commandVolumeFixReplication) fixOneUnderReplicatedVolume(commandEnv *Co
return err
}
// adjust free volume count
dst.dataNode.DiskInfos[replica.info.DiskType].FreeVolumeCount--
// adjust volume count
dst.dataNode.DiskInfos[replica.info.DiskType].VolumeCount++
break
}
}

Loading…
Cancel
Save