summaryrefslogtreecommitdiffstats
path: root/filter_plugins
diff options
context:
space:
mode:
authorjawed <jawed.khelil@amadeus.com>2016-07-20 11:53:57 +0200
committerjawed <jawed.khelil@amadeus.com>2016-08-09 12:03:23 +0200
commit75df5713bc1b1d3cf454a6975e2ed8eea528a8a3 (patch)
tree4df2f03759dcfccc4db40161aa2340f7e4e77914 /filter_plugins
parent9e0e8485638e36f1bacbd8e1c5df134a5a7595f0 (diff)
downloadopenshift-75df5713bc1b1d3cf454a6975e2ed8eea528a8a3.tar.gz
openshift-75df5713bc1b1d3cf454a6975e2ed8eea528a8a3.tar.bz2
openshift-75df5713bc1b1d3cf454a6975e2ed8eea528a8a3.tar.xz
openshift-75df5713bc1b1d3cf454a6975e2ed8eea528a8a3.zip
fixing openshift key error in case of node failure during run (ssh issue)
Diffstat (limited to 'filter_plugins')
-rw-r--r--filter_plugins/oo_filters.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/filter_plugins/oo_filters.py b/filter_plugins/oo_filters.py
index 557a684dc..b57bc0afa 100644
--- a/filter_plugins/oo_filters.py
+++ b/filter_plugins/oo_filters.py
@@ -39,7 +39,6 @@ class FilterModule(object):
the value.
If the key isn't present, None is returned.
-
Ex: data = {'a': {'b': {'c': 5}}}
attribute = "a.b.c"
returns 5
@@ -57,6 +56,7 @@ class FilterModule(object):
return ptr
+
@staticmethod
def oo_flatten(data):
""" This filter plugin will flatten a list of lists
@@ -146,6 +146,7 @@ class FilterModule(object):
retval = [FilterModule.get_attr(d, attribute) for d in data]
retval = [val for val in retval if val != None]
+
return retval
@staticmethod