summaryrefslogtreecommitdiffstats
path: root/build/python-congressclient.diff
diff options
context:
space:
mode:
authorDan Radez <dradez@redhat.com>2016-06-28 15:34:32 -0400
committerDan Radez <dradez@redhat.com>2016-07-11 14:53:19 -0400
commitdfc2eb500dd291efdb0e3b7c467e4f330911d7bc (patch)
treee98352c6dfc337ae98196f05657b114bb90a6674 /build/python-congressclient.diff
parente73182cbfa7f7b544fddfcbc0ea79644722d730e (diff)
Adding doctor driver and datasource
opnfv-tht-pr: 37 JIRA: APEX-158 Change-Id: I079d22e8ee7798bddf7f2f1b6cc3f1b49f1d5773 Signed-off-by: Dan Radez <dradez@redhat.com>
Diffstat (limited to 'build/python-congressclient.diff')
-rw-r--r--build/python-congressclient.diff25
1 files changed, 25 insertions, 0 deletions
diff --git a/build/python-congressclient.diff b/build/python-congressclient.diff
new file mode 100644
index 00000000..82e76e07
--- /dev/null
+++ b/build/python-congressclient.diff
@@ -0,0 +1,25 @@
+From 26d39efbb931e04a5e95d504c27ede12d0a81c43 Mon Sep 17 00:00:00 2001
+From: Masahito Muroi <muroi.masahito@lab.ntt.co.jp>
+Date: Fri, 25 Mar 2016 14:06:00 +0900
+Subject: [PATCH] Allows DataSource's config field to have not dict type obj
+
+CongressClient expects all datasource driver has dict object in
+config field. It raises an error when a datasource doesn't have
+any config.
+
+This patch allows config fields to be None object.
+
+Change-Id: I73354f1073f3f814854652eaeaa4b3bbe4bfcf7d
+---
+
+diff --git a/congressclient/common/utils.py b/congressclient/common/utils.py
+index 9a381e8..b5cedd4 100644
+--- a/congressclient/common/utils.py
++++ b/congressclient/common/utils.py
+@@ -77,6 +77,8 @@
+ :param data: a dict
+ :rtype: a string formatted to {a:b, c:d}
+ """
++ if not isinstance(data, dict):
++ return str(data)
+ return str({str(key): str(value) for key, value in data.items()})