Updated Branches: refs/heads/4.2 55c56b6cc -> 95b5202ef
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. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/95b5202e Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/95b5202e Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/95b5202e Branch: refs/heads/4.2 Commit: 95b5202ef30865e47aaf3cec5e06eaa7ae508712 Parents: 55c56b6 Author: Ashutosh K <ashut...@clogeny.com> Authored: Tue Dec 10 00:52:10 2013 -0500 Committer: Girish Shilamkar <gir...@clogeny.com> Committed: Tue Dec 10 00:59:54 2013 -0500 ---------------------------------------------------------------------- test/integration/component/test_vpc_network.py | 5 ----- 1 file changed, 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/95b5202e/test/integration/component/test_vpc_network.py ---------------------------------------------------------------------- diff --git a/test/integration/component/test_vpc_network.py b/test/integration/component/test_vpc_network.py index c918f54..ec36deb 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")