From 2ec0b8fa4ab0ef58b87d41bd4ddfc4b6d6d4a9e8 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 (cherry picked from commit 14968daeaa454f872a6271172041596c208ce3f1) --- 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)