aboutsummaryrefslogtreecommitdiff
path: root/rpkid/rpki/irdb/zookeeper.py
diff options
context:
space:
mode:
authorMichael Elkins <melkins@tislabs.com>2012-02-17 02:42:31 +0000
committerMichael Elkins <melkins@tislabs.com>2012-02-17 02:42:31 +0000
commite8dc55fd867b15c60a13e2a6b42678079465ea85 (patch)
treee2d03f806e1428cbdad7748fdbdbd3d4d250ccd7 /rpkid/rpki/irdb/zookeeper.py
parentc639e1b79b0fbd3b835f8f060de13414a6677095 (diff)
use .all() to select all objects. closes #199
svn path=/branches/tk161/; revision=4351
Diffstat (limited to 'rpkid/rpki/irdb/zookeeper.py')
-rw-r--r--rpkid/rpki/irdb/zookeeper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/rpki/irdb/zookeeper.py b/rpkid/rpki/irdb/zookeeper.py
index 2cb8dc41..31c3d7bb 100644
--- a/rpkid/rpki/irdb/zookeeper.py
+++ b/rpkid/rpki/irdb/zookeeper.py
@@ -752,7 +752,7 @@ class Zookeeper(object):
"""
if child_handle is None:
- children = self.resource_ca.children
+ children = self.resource_ca.children.all()
else:
children = self.resource_ca.children.filter(handle = child_handle)