From 94a7dee395aca1fb323e702f480cf4e900e6988e Mon Sep 17 00:00:00 2001 From: Gaurav Aradhye Date: Wed, 14 May 2014 23:47:21 -0400 Subject: [PATCH] CLOUDSTACK-6612: Resolved DB connection issue related to passing correct password --- tools/marvin/marvin/cloudstackTestClient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/marvin/marvin/cloudstackTestClient.py b/tools/marvin/marvin/cloudstackTestClient.py index b554ba11d07..29a298b70c4 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)