diff options
author | Rob Austein <sra@hactrn.net> | 2012-08-19 01:09:29 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2012-08-19 01:09:29 +0000 |
commit | 26c65b2bdfb408a1bdeb3557f6e460d78813f1d6 (patch) | |
tree | 743135e60ca412d205aa0952d835a48edfd04f02 /rpkid/tests/yamltest.py | |
parent | ccc2eb0174eb708888249966e7c10306315fb1a5 (diff) |
Refactor rpkid high-level task system to use classes rather than
closures, to make it easier for long-running tasks to yield the CPU
periodically. As a side effect, this moves a lot of dense code out of
rpki.left_right.self_elt methods and into separate task-specific
classes. See #275.
svn path=/branches/tk274/; revision=4640
Diffstat (limited to 'rpkid/tests/yamltest.py')
-rw-r--r-- | rpkid/tests/yamltest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/tests/yamltest.py b/rpkid/tests/yamltest.py index 3039f545..6d4a6381 100644 --- a/rpkid/tests/yamltest.py +++ b/rpkid/tests/yamltest.py @@ -608,7 +608,7 @@ try: root_uri = "rsync://localhost:%d/rpki/" % db.root.pubd.rsync_port root_sia = ((rpki.oids.name2oid["id-ad-caRepository"], ("uri", root_uri)), - (rpki.oids.name2oid["id-ad-rpkiManifest"], ("uri", root_uri + "root.mnf"))) + (rpki.oids.name2oid["id-ad-rpkiManifest"], ("uri", root_uri + "root.mft"))) root_cert = rpki.x509.X509.self_certify( keypair = root_key, |