diff options
author | Rob Austein <sra@hactrn.net> | 2007-09-16 21:06:15 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2007-09-16 21:06:15 +0000 |
commit | 32b7a7b22c11129c2c17d8adc3f6aceac0e6de0b (patch) | |
tree | 1e01ca2834fed3e9a05e8d41a808dfb7f047d987 /scripts/rpkid.py | |
parent | 3b0c4bcd97d0af53239bfaed4a129a08858da4cf (diff) |
Switch to using APNIC's preferred version of the up-down protocol
schema. I still think the folks at APNIC are wrong about allowing
bogus error codes to slip past schema checking, but coding around this
problem is less work in the long run than maintaining a forked schema
would be. Time to bury the hatchet and move on.
svn path=/scripts/Makefile; revision=975
Diffstat (limited to 'scripts/rpkid.py')
-rwxr-xr-x | scripts/rpkid.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/rpkid.py b/scripts/rpkid.py index a8eb024c..483ad5be 100755 --- a/scripts/rpkid.py +++ b/scripts/rpkid.py @@ -88,7 +88,7 @@ db = MySQLdb.connect(user = cfg.get(section, "sql-username"), cur = db.cursor() lr_rng = rpki.relaxng.RelaxNG("left-right-schema.rng") -ud_rng = rpki.relaxng.RelaxNG("up-down-medium-schema.rng") +ud_rng = rpki.relaxng.RelaxNG("up-down-schema.rng") cms_ta_irdb = cfg.get(section, "cms-ta-irdb") cms_ta_irbe = cfg.get(section, "cms-ta-irbe") |