You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by gi...@apache.org on 2014/05/15 13:23:32 UTC

git commit: updated refs/heads/master to 94a7dee

Repository: cloudstack
Updated Branches:
  refs/heads/master fe279ff3d -> 94a7dee39


CLOUDSTACK-6612: Resolved DB connection issue related to passing correct password


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/94a7dee3
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/94a7dee3
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/94a7dee3

Branch: refs/heads/master
Commit: 94a7dee395aca1fb323e702f480cf4e900e6988e
Parents: fe279ff
Author: Gaurav Aradhye <ga...@clogeny.com>
Authored: Wed May 14 23:47:21 2014 -0400
Committer: Girish Shilamkar <gi...@clogeny.com>
Committed: Thu May 15 00:36:08 2014 -0400

----------------------------------------------------------------------
 tools/marvin/marvin/cloudstackTestClient.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/94a7dee3/tools/marvin/marvin/cloudstackTestClient.py
----------------------------------------------------------------------
diff --git a/tools/marvin/marvin/cloudstackTestClient.py b/tools/marvin/marvin/cloudstackTestClient.py
index b554ba1..29a298b 100644
--- a/tools/marvin/marvin/cloudstackTestClient.py
+++ b/tools/marvin/marvin/cloudstackTestClient.py
@@ -191,7 +191,7 @@ class CSTestClient(object):
         user = "cloud" if self.__dbSvrDetails.user is None \
             else self.__dbSvrDetails.user
         passwd = 'cloud' if self.__dbSvrDetails.passwd is None \
-            else self.__dbSvrDetails.passd
+            else self.__dbSvrDetails.passwd
         db = 'cloud' if self.__dbSvrDetails.db is None \
             else self.__dbSvrDetails.db
         self.__dbConnection = DbConnection(host, port, user, passwd, db)