diff options
author | Rob Austein <sra@hactrn.net> | 2008-06-06 00:25:15 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2008-06-06 00:25:15 +0000 |
commit | 62a537b5d40baae387baeef2a11e5f27c3961535 (patch) | |
tree | 2795cdd13ef029d220244f66f63804a5dec9be25 /rpkid/pubd.py | |
parent | 2b5510991e201b9d118071f5a5270920dd026050 (diff) |
Checkpoint (refactor to create new rpki.sql.session class to handle
retry of failed sql connections, not done yet, time for dinner...)
svn path=/rpkid/pubd.py; revision=1848
Diffstat (limited to 'rpkid/pubd.py')
-rwxr-xr-x | rpkid/pubd.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rpkid/pubd.py b/rpkid/pubd.py index 36fd4a71..18311d26 100755 --- a/rpkid/pubd.py +++ b/rpkid/pubd.py @@ -27,9 +27,9 @@ Default configuration file is pubd.conf, override with --config option. import traceback, os, time, getopt, sys, MySQLdb, lxml.etree import rpki.resource_set, rpki.up_down, rpki.left_right, rpki.x509, rpki.sql import rpki.https, rpki.config, rpki.exceptions, rpki.relaxng, rpki.log -import rpki.gctx, rpki.publication +import rpki.rpki_engine, rpki.publication -class pubd_context(rpki.gctx.global_context): +class pubd_context(rpki.rpki_engine.rpkid_context): """A container for various pubd parameters.""" def __init__(self, cfg): |