From ae911a2ad22e5712a83166e2f6d9fd52fa8ab9db Mon Sep 17 00:00:00 2001 From: Ashutosh K Date: Tue, 10 Dec 2013 00:52:10 -0500 Subject: [PATCH] CLOUDSTACK-4820: Remove netacl check from test_01_wait_network_gc From 4.2, network ACLs are no longer associated with a single network. Multiple tiers within a VPC can share the same ACL. Due to this, ACLs should not be cleaned up during network GC. --- test/integration/component/test_vpc_network.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/integration/component/test_vpc_network.py b/test/integration/component/test_vpc_network.py index c918f54043d..ec36deb1fe5 100644 --- a/test/integration/component/test_vpc_network.py +++ b/test/integration/component/test_vpc_network.py @@ -2332,11 +2332,6 @@ class TestVPCNetworkGc(cloudstackTestCase): wait_for_cleanup(self.apiclient, ["network.gc.interval", "network.gc.wait"]) - #Bug???: Network Acls are not cleared - netacls = NetworkACL.list(self.apiclient, networkid=self.network_1.id) - self.debug("List of NetACLS %s" % netacls) - self.assertEqual(netacls, None, "Netacls were not cleared after network GC thread is run") - lbrules = LoadBalancerRule.list(self.apiclient, networkid=self.network_1.id) self.debug("List of LB Rules %s" % lbrules) self.assertEqual(lbrules, None, "LBrules were not cleared after network GC thread is run")