Edited README

This commit is contained in:
markturansky
2015-04-17 10:42:25 -04:00
parent e1b885c9ad
commit 49883e7d01
2 changed files with 58 additions and 36 deletions

View File

@@ -139,7 +139,7 @@ func matchStorageCapacity(pvA, pvB *api.PersistentVolume) bool {
// filterBoundVolumes is a matchPredicate that filters bound volumes before comparing storage capacity
func filterBoundVolumes(compareThis, toThis *api.PersistentVolume) bool {
if toThis.Spec.ClaimRef != nil || compareThis.Spec.ClaimRef != nil {
if compareThis.Spec.ClaimRef != nil || toThis.Spec.ClaimRef != nil {
return false
}
return matchStorageCapacity(compareThis, toThis)