diff options
author | Rob Austein <sra@hactrn.net> | 2007-11-19 00:39:07 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2007-11-19 00:39:07 +0000 |
commit | 16ab264ea800faf8d834cea9a485b64ca7653483 (patch) | |
tree | 2b86da5aaf7e7482da43f6d6252510124fc6dba2 | |
parent | 2bdcb8ae09806c9ce1d996711225735ce10255ca (diff) |
Timestamp note
svn path=/scripts/README; revision=1319
-rw-r--r-- | scripts/README | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/README b/scripts/README index 5eec273a..3dc0d0fe 100644 --- a/scripts/README +++ b/scripts/README @@ -84,6 +84,12 @@ Current TO DO list: state := pending | active | deprecated | revoked timestamp := NULL | <time of next transition> + We can check for things with expired timers directly by doing + something like: + + SELECT blah FROM ca_detail + WHERE timestamp IS NOT NULL and timestamp < UTC_TIMESTAMP() + At this point I doubt we really need the revoked state. If we do need the revoked state, the timer becomes the delay until we can get rid of the ca_detail object entirely, or something like that. |