[jira] Closed: (JCS-36) client count decreased too often in IndexedDiskCacheManager.release
"Aaron Smuts (JIRA)" <[email protected]> Fri, 29 Aug 2008 09:54:46 -0700 (PDT)
| Newsgroups | gmane.comp.jakarta.turbine.jcs.devel |
|---|---|
| Message-ID | <385047207.1220028886647.JavaMail.jira@brutus> |
[ https://issues.apache.org/jira/browse/JCS-36?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Aaron Smuts closed JCS-36.
--------------------------
Resolution: Fixed
Fix Version/s: jcs-1.4-dev
Done.
> client count decreased too often in IndexedDiskCacheManager.release
> -------------------------------------------------------------------
>
> Key: JCS-36
> URL: https://issues.apache.org/jira/browse/JCS-36
> Project: JCS
> Issue Type: Bug
> Components: Indexed Disk Cache
> Affects Versions: jcs-1.3, jcs-1.4-dev
> Reporter: Matthias Kerkhoff
> Assignee: Aaron Smuts
> Fix For: jcs-1.4-dev
>
>
> The release() method decreases the client count TWICE during each invocation. As getInstance increases the client count only once release will not work as expected:
> public void release()
> {
> clients--;
> if ( --clients != 0 )
> {
> return;
> }
> should be changed into
> public void release()
> {
> if ( --clients != 0 )
> {
> return;
> }
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.