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 <[email protected]> Authored: Wed May 14 23:47:21 2014 -0400 Committer: Girish Shilamkar <[email protected]> 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)
