mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
fix skip loop
This commit is contained in:
parent
279053572c
commit
10d435f2c2
|
@ -200,12 +200,16 @@ func (c *commandVolumeFixReplication) deleteOneVolume(commandEnv *CommandEnv, wr
|
|||
}
|
||||
}
|
||||
|
||||
сollectionIsMismatch := false
|
||||
for _, volumeReplica := range replicas {
|
||||
if volumeReplica.info.Collection != replica.info.Collection {
|
||||
fmt.Fprintf(writer, "skip delete volume %d as collection %s is mismatch: %s\n", replica.info.Id, replica.info.Collection, volumeReplica.info.Collection)
|
||||
continue
|
||||
сollectionIsMismatch = true
|
||||
}
|
||||
}
|
||||
if сollectionIsMismatch {
|
||||
continue
|
||||
}
|
||||
|
||||
fmt.Fprintf(writer, "deleting volume %d from %s ...\n", replica.info.Id, replica.location.dataNode.Id)
|
||||
|
||||
|
|
Loading…
Reference in a new issue