Browse Source

volume.check.disk: break loop for read only volumes

fix https://github.com/chrislusf/seaweedfs/issues/2002
pull/2008/head
Chris Lu 4 years ago
parent
commit
e75633c64f
  1. 1
      weed/shell/command_volume_check_disk.go

1
weed/shell/command_volume_check_disk.go

@ -85,6 +85,7 @@ func (c *commandVolumeCheckDisk) Do(args []string, commandEnv *CommandEnv, write
}
if a.info.ReadOnly || b.info.ReadOnly {
fmt.Fprintf(writer, "skipping readonly volume %d on %s and %s\n", a.info.Id, a.location.dataNode.Id, b.location.dataNode.Id)
replicas = replicas[1:]
continue
}

Loading…
Cancel
Save