You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by gi...@apache.org on 2013/12/10 13:46:57 UTC

git commit: updated refs/heads/master to ae911a2

Updated Branches:
  refs/heads/master a55f10828 -> ae911a2ad


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/ae911a2a
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/ae911a2a
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/ae911a2a

Branch: refs/heads/master
Commit: ae911a2ad22e5712a83166e2f6d9fd52fa8ab9db
Parents: a55f108
Author: Ashutosh K <as...@clogeny.com>
Authored: Tue Dec 10 00:52:10 2013 -0500
Committer: Girish Shilamkar <gi...@clogeny.com>
Committed: Tue Dec 10 00:58:58 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/ae911a2a/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")