diff options
author | Rob Austein <sra@hactrn.net> | 2015-10-19 03:36:42 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2015-10-19 03:36:42 +0000 |
commit | 7f5e75188ad4527e3c3425a155dfed0847a389dd (patch) | |
tree | 400301cae01f51141e380664cf0b382b8204a00d /rpki/config.py | |
parent | 7ab6040f7eb05a7ac4424e0294d228256e9a64dd (diff) |
Amputate old SQL code out of rpkid with a fire axe, replacing it with
Django ORM. Duct tape and bailing wire everywhere, much clean-up left
to do, but basic "make yamltest" suite runs. Much of the clean-up
isn't worth doing until after revamping the I/O system, as it'll all
change again at that point anyway.
svn path=/branches/tk705/; revision=6127
Diffstat (limited to 'rpki/config.py')
-rw-r--r-- | rpki/config.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/rpki/config.py b/rpki/config.py index 0be0d1a0..3234294c 100644 --- a/rpki/config.py +++ b/rpki/config.py @@ -207,7 +207,6 @@ class parser(object): # pylint: disable=W0621 import rpki.http import rpki.x509 - import rpki.sql import rpki.async import rpki.log import rpki.daemonize @@ -250,11 +249,6 @@ class parser(object): pass try: - rpki.sql.sql_persistent.sql_debug = self.getboolean("sql_debug") - except ConfigParser.NoOptionError: - pass - - try: rpki.async.timer.gc_debug = self.getboolean("gc_debug") except ConfigParser.NoOptionError: pass |