Github user shwetaag commented on a diff in the pull request: https://github.com/apache/cloudstack/pull/1455#discussion_r57562054 --- Diff: test/integration/smoke/test_privategw_acl.py --- @@ -287,6 +298,16 @@ def performVPCTests(self, vpc_off, restart_with_cleanup = False): if not physical_networks: self.fail("No Physical Networks found!") + qresultset = self.dbclient.execute( + "select vnet from op_dc_vnet_alloc where physical_network_id=\ + (select id from physical_network where uuid='%s' ) and taken is NULL;" % physical_networks[0].id + ) + self.assertEqual(validateList(qresultset)[0], + PASS, + "Invalid sql query response" + ) + #vlans = physical_networks[0].vlan.split('-') + vlans = qresultset vlans = physical_networks[0].vlan.split('-') --- End diff -- this split is not needed for getting correct vlan entry
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---