Updated Branches: refs/heads/4.2 f71eff7bf -> 5eb684214
Log the API exception for debugging Signed-off-by: Prasanna Santhanam <[email protected]> (cherry picked from commit f17e046319508ef9ccfe54095120cc2d4fe32c4a) Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/5eb68421 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/5eb68421 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/5eb68421 Branch: refs/heads/4.2 Commit: 5eb684214993b2912437a39b7caa5ec8792cf2ca Parents: f71eff7 Author: Prasanna Santhanam <[email protected]> Authored: Mon Aug 5 20:16:15 2013 +0530 Committer: Prasanna Santhanam <[email protected]> Committed: Mon Aug 5 20:16:35 2013 +0530 ---------------------------------------------------------------------- test/integration/component/test_redundant_router_network_rules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/5eb68421/test/integration/component/test_redundant_router_network_rules.py ---------------------------------------------------------------------- diff --git a/test/integration/component/test_redundant_router_network_rules.py b/test/integration/component/test_redundant_router_network_rules.py index 932e17a..faed389 100644 --- a/test/integration/component/test_redundant_router_network_rules.py +++ b/test/integration/component/test_redundant_router_network_rules.py @@ -1244,7 +1244,7 @@ class TestRedundantRouterRulesLifeCycle(cloudstackTestCase): try: Router.stop(self.apiclient, id=master_router.id) except Exception as e: - self.fail("Failed to stop master router..") + self.fail("Failed to stop master router becaues of %s" % e) self.debug("Associating public IP for network: %s" % network.name) public_ip = PublicIPAddress.create(
