diff options
| author | awnuk <awnuk@c9f7a03b-bd48-0410-a16d-cbbf54688b0b> | 2008-07-11 01:03:52 +0000 |
|---|---|---|
| committer | awnuk <awnuk@c9f7a03b-bd48-0410-a16d-cbbf54688b0b> | 2008-07-11 01:03:52 +0000 |
| commit | 79faed2af8029cb48c891741cc51888dbf8a8f60 (patch) | |
| tree | f07c0a03d7786a9105ae3bdfa7487d4eac310d8b | |
| parent | deda03adac8f4dbbe13c9fd6b171277516900838 (diff) | |
Fix for bug #243804
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@68 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
| -rw-r--r-- | pki/base/ca/src/com/netscape/ca/CRLIssuingPoint.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pki/base/ca/src/com/netscape/ca/CRLIssuingPoint.java b/pki/base/ca/src/com/netscape/ca/CRLIssuingPoint.java index 2fcd2421e..f529f1fc7 100644 --- a/pki/base/ca/src/com/netscape/ca/CRLIssuingPoint.java +++ b/pki/base/ca/src/com/netscape/ca/CRLIssuingPoint.java @@ -1577,7 +1577,9 @@ public class CRLIssuingPoint implements ICRLIssuingPoint, Runnable { // accessor but we don't want to touch the interface CertificateRepository cr = (CertificateRepository)mCertRepository; + CMS.debug("About to start processRevokedCerts"); synchronized (cr.mCertStatusUpdateThread) { + CMS.debug("Starting processRevokedCerts (entered lock)"); ICertRecordList list = mCertRepository.findCertRecordsInList(filter, new String[] {ICertRecord.ATTR_ID, ICertRecord.ATTR_REVO_INFO, "objectclass" }, "serialno", @@ -1586,6 +1588,7 @@ public class CRLIssuingPoint implements ICRLIssuingPoint, Runnable { int totalSize = list.getSize(); list.processCertRecords(0, totalSize - 1, cp); + CMS.debug("processRevokedCerts done"); } } |
