Github user wilderrodrigues commented on the pull request: https://github.com/apache/cloudstack/pull/908#issuecomment-145237254 Guys, There is also a glitch with the test_vpc_redundant.py: it was expected to fail on the new test_routes, because the default route is broken on R-VPC - which needs an issue first and a new PR. The glitch on the test was: ``` self.assertEqual( result.count("0% packet loss"), 1, "Ping to outside world from VM should be successful" ) ``` Which would pass if we get "100.0% packet loss" I changed it for: ``` self.assertEqual( result.count("3 packets received"), 1, "Ping to outside world from VM should be successful" ) ``` I will submit the changes on this PR later today or tomorrow morning. Cheers, Wilder
--- 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. ---