1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-06-25 20:09:30 +02:00

fix collectionIsMismatch charset

This commit is contained in:
Konstantin Lebedev 2022-05-16 13:23:23 +05:00
parent 10d435f2c2
commit 44f53ceda6

View file

@ -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
}