Remove unnecessary code in ingress upgrade logic

This commit is contained in:
Rohit Ramkumar 2018-04-12 09:05:44 -07:00 committed by GitHub
parent dacb9ad692
commit 8331cd5bbf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -177,11 +177,6 @@ func (t *IngressUpgradeTest) verify(f *framework.Framework, done <-chan struct{}
postUpgradeResourceStore := &GCPResourceStore{}
t.populateGCPResourceStore(postUpgradeResourceStore)
// Ignore compute.SslCertificates since we know it will change during an upgrade/downgrade.
// TODO(rramkumar): Remove this once glbc 1.1 is released.
t.resourceStore.SslList = nil
postUpgradeResourceStore.SslList = nil
framework.ExpectNoError(compareGCPResourceStores(t.resourceStore, postUpgradeResourceStore, func(v1 reflect.Value, v2 reflect.Value) error {
i1 := v1.Interface()
i2 := v2.Interface()