Updated Branches: refs/heads/4.3 980e66d50 -> 5f80b1d7b
Fixed a incorrect marvin request call. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/5f80b1d7 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/5f80b1d7 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/5f80b1d7 Branch: refs/heads/4.3 Commit: 5f80b1d7be0bf23f125172fcdf13c81764d01428 Parents: 980e66d Author: Girish Shilamkar <[email protected]> Authored: Sun Nov 24 18:29:21 2013 -0500 Committer: Girish Shilamkar <[email protected]> Committed: Sun Nov 24 18:29:21 2013 -0500 ---------------------------------------------------------------------- tools/marvin/marvin/asyncJobMgr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/5f80b1d7/tools/marvin/marvin/asyncJobMgr.py ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/asyncJobMgr.py b/tools/marvin/marvin/asyncJobMgr.py index e24170e..ee0e891 100644 --- a/tools/marvin/marvin/asyncJobMgr.py +++ b/tools/marvin/marvin/asyncJobMgr.py @@ -81,7 +81,7 @@ class workThread(threading.Thread): if cmd.isAsync == "false": jobstatus.startTime = datetime.datetime.now() - result = self.connection.marvin_request(cmd) + result = self.connection.marvinRequest(cmd) jobstatus.result = result jobstatus.endTime = datetime.datetime.now() jobstatus.duration =\
