aboutsummaryrefslogtreecommitdiff
path: root/rpki/irdb/zookeeper.py
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2014-07-03 19:21:31 +0000
committerRob Austein <sra@hactrn.net>2014-07-03 19:21:31 +0000
commit1fde024c07a0dc681a534a4197a18226737ebd19 (patch)
tree872843c4c0ed192e9ff824f8e0969cc295b915e8 /rpki/irdb/zookeeper.py
parentcd264895b35e5345dbbe14539614bb6e23bddc0e (diff)
Get rid of the <config/> element of the publication-control protocol, it's a historical relic.
Update example PDUs for publication and publication-control protocols. svn path=/branches/tk705/; revision=5883
Diffstat (limited to 'rpki/irdb/zookeeper.py')
-rw-r--r--rpki/irdb/zookeeper.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/rpki/irdb/zookeeper.py b/rpki/irdb/zookeeper.py
index 2c600ee5..49229463 100644
--- a/rpki/irdb/zookeeper.py
+++ b/rpki/irdb/zookeeper.py
@@ -536,11 +536,6 @@ class Zookeeper(object):
if self.run_pubd:
updates = []
- updates.append(
- rpki.publication_control.config_elt.make_pdu(
- action = "set",
- bpki_crl = self.server_ca.latest_crl))
-
updates.extend(
rpki.publication_control.client_elt.make_pdu(
action = "set",
@@ -1530,12 +1525,6 @@ class Zookeeper(object):
if not self.run_pubd:
return
- # Make sure that pubd's BPKI CRL is up to date.
-
- self.call_pubd(rpki.publication_control.config_elt.make_pdu(
- action = "set",
- bpki_crl = self.server_ca.latest_crl))
-
# See what pubd already has on file
pubd_reply = self.call_pubd(rpki.publication_control.client_elt.make_pdu(action = "list"))