Merge "move logical switch deletion after edge delete"

This commit is contained in:
Jenkins 2015-06-09 04:03:08 +00:00 committed by Gerrit Code Review
commit eaa4ec92cc

View File

@ -304,11 +304,11 @@ class VSMClient(object):
print "ERROR: reponse status code %s" % response.status_code print "ERROR: reponse status code %s" % response.status_code
def cleanup_all(self): def cleanup_all(self):
self.cleanup_logical_switch()
self.cleanup_firewall_section() self.cleanup_firewall_section()
self.cleanup_security_group() self.cleanup_security_group()
self.cleanup_spoofguard_policies() self.cleanup_spoofguard_policies()
self.cleanup_edge() self.cleanup_edge()
self.cleanup_logical_switch()
def ceil(a, b): def ceil(a, b):