mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
Merge pull request #3058 from kmlebedev/fix_collectionIsMismatch
This commit is contained in:
commit
a84f4eefc2
|
@ -200,14 +200,14 @@ func (c *commandVolumeFixReplication) deleteOneVolume(commandEnv *CommandEnv, wr
|
|||
}
|
||||
}
|
||||
|
||||
сollectionIsMismatch := false
|
||||
collectionIsMismatch := 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)
|
||||
сollectionIsMismatch = true
|
||||
collectionIsMismatch = true
|
||||
}
|
||||
}
|
||||
if сollectionIsMismatch {
|
||||
if collectionIsMismatch {
|
||||
continue
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue