diff options
author | Rob Austein <sra@hactrn.net> | 2007-10-07 03:42:30 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2007-10-07 03:42:30 +0000 |
commit | a07460d4ce12b03e207198f8a7aaefe4ba4d1fa7 (patch) | |
tree | c33c643cf52757ab6e5aab9f0c3c1560dc58f4f0 | |
parent | 6a392252dd9cd7ec13ed9b734c2da830614a0080 (diff) |
Checkpoint
svn path=/scripts/rpki/sql.py; revision=1108
-rw-r--r-- | scripts/rpki/sql.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/rpki/sql.py b/scripts/rpki/sql.py index 27f77498..beec78ab 100644 --- a/scripts/rpki/sql.py +++ b/scripts/rpki/sql.py @@ -200,9 +200,12 @@ class ca_obj(sql_persistant): - Other cases I've forgotten? """ + # For the moment this engine never requests subset certs (req_* + # attributes in issue request) so it's safe to assume that there + # are no subset certs to deal with. That should simplify our task. + # This looks like yet another place where a ca_detail.ski column # could be useful. - ca_details = ca_detail_obj.sql_fetch_where(gctx, "ca_id = %s", ca.ca_id) raise NotImplementedError |