diff options
author | Rob Austein <sra@hactrn.net> | 2014-07-03 19:21:31 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2014-07-03 19:21:31 +0000 |
commit | 1fde024c07a0dc681a534a4197a18226737ebd19 (patch) | |
tree | 872843c4c0ed192e9ff824f8e0969cc295b915e8 /rpki/irdb | |
parent | cd264895b35e5345dbbe14539614bb6e23bddc0e (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')
-rw-r--r-- | rpki/irdb/zookeeper.py | 11 |
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")) |