|
@@ -21,14 +21,21 @@ class FilterModule(object):
|
|
|
if replicas is not None:
|
|
|
return replicas
|
|
|
|
|
|
+ replicas = 1
|
|
|
+
|
|
|
+ # Ignore boolean expression limit of 5.
|
|
|
+ # pylint: disable=too-many-boolean-expressions
|
|
|
if (isinstance(router_nodes, dict) and
|
|
|
'results' in router_nodes and
|
|
|
'results' in router_nodes['results'] and
|
|
|
- 'items' in router_nodes['results']['results']):
|
|
|
+ isinstance(router_nodes['results']['results'], list) and
|
|
|
+ len(router_nodes['results']['results']) > 0 and
|
|
|
+ 'items' in router_nodes['results']['results'][0]):
|
|
|
|
|
|
- return len(router_nodes['results']['results'][0]['items'])
|
|
|
+ if len(router_nodes['results']['results'][0]['items']) > 0:
|
|
|
+ replicas = len(router_nodes['results']['results'][0]['items'])
|
|
|
|
|
|
- return 1
|
|
|
+ return replicas
|
|
|
|
|
|
def filters(self):
|
|
|
''' returns a mapping of filters to methods '''
|