Updated Branches: refs/heads/master b8af4278d -> aa3ae45e6
marvin: raise error so cli can pick it up Signed-off-by: Rohit Yadav <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/8ea2cc4e Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/8ea2cc4e Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/8ea2cc4e Branch: refs/heads/master Commit: 8ea2cc4e57c916f1d019f6c5b1ded63b54581651 Parents: b8af427 Author: Rohit Yadav <[email protected]> Authored: Fri Nov 16 22:10:05 2012 +0530 Committer: Rohit Yadav <[email protected]> Committed: Fri Nov 16 22:18:32 2012 +0530 ---------------------------------------------------------------------- tools/marvin/marvin/cloudstackConnection.py | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/8ea2cc4e/tools/marvin/marvin/cloudstackConnection.py ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/cloudstackConnection.py b/tools/marvin/marvin/cloudstackConnection.py index 98c0214..bd8a5b2 100644 --- a/tools/marvin/marvin/cloudstackConnection.py +++ b/tools/marvin/marvin/cloudstackConnection.py @@ -81,6 +81,7 @@ class cloudConnection(object): elif hasattr(e, 'code'): if self.logging is not None: self.logging.critical("server returned %d error code"%e.code) + raise e except httplib.HTTPException, h: if self.logging is not None: self.logging.debug("encountered http Exception %s"%h.args)
