aboutsummaryrefslogtreecommitdiff
path: root/rpkid/pubd.py
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2008-05-30 17:28:12 +0000
committerRob Austein <sra@hactrn.net>2008-05-30 17:28:12 +0000
commitba16ed27191ae62d0ac993910cc0429b3eea9931 (patch)
treea23a5b1bb22ac401af523c2cdc61cf37bf9d0d29 /rpkid/pubd.py
parent70b554a2fb041a11bdeb59c82e3f05f8a67f2aaa (diff)
Initial version of publication protocol and pubd seem to be working.
Not yet seriously tested. BPKI CRLs not right yet. svn path=/rpkid/README; revision=1832
Diffstat (limited to 'rpkid/pubd.py')
-rwxr-xr-xrpkid/pubd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/pubd.py b/rpkid/pubd.py
index 30813f33..818370b3 100755
--- a/rpkid/pubd.py
+++ b/rpkid/pubd.py
@@ -75,7 +75,7 @@ class pubd_context(rpki.gctx.global_context):
client = rpki.publication.client_elt.sql_fetch(self, long(client_id))
if client is None:
raise rpki.exceptions.ClientNotFound, "Could not find client %s" % client_id
- return 200, self.handler_common(query, client, (client.bpki_ta, client.irbe_cert))
+ return 200, self.handler_common(query, client, (self.bpki_ta, client.bpki_cert, client.bpki_glue))
except Exception, data:
rpki.log.error(traceback.format_exc())
return 500, "Could not process PDU: %s" % data