[jboss-jira] [JBoss JIRA] Closed: (EJBTHREE-1899) StatefulTreeCache uses wrong Fqn to "markNodeInUse"
Brian Stansberry (JIRA)
jira-events at lists.jboss.org
Thu Aug 20 17:23:23 EDT 2009
[ https://jira.jboss.org/jira/browse/EJBTHREE-1899?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Brian Stansberry closed EJBTHREE-1899.
--------------------------------------
Fix Version/s: 1.1.16
Resolution: Done
> StatefulTreeCache uses wrong Fqn to "markNodeInUse"
> ---------------------------------------------------
>
> Key: EJBTHREE-1899
> URL: https://jira.jboss.org/jira/browse/EJBTHREE-1899
> Project: EJB 3.0
> Issue Type: Bug
> Components: Clustering
> Affects Versions: 1.1.14
> Reporter: Brian Stansberry
> Assignee: Brian Stansberry
> Fix For: 1.1.16
>
>
> StatefulTreeCache.get() is passing the wrong Fqn to region.markNodeInUse:
> // Mark the Fqn telling the eviction thread not to passivate it yet.
> // Note the Fqn we use is relative to the region!
> region.markNodeCurrentlyInUse(new Fqn(key.toString()), MarkInUseWaitTime);
> It should be
> // Mark the Fqn telling the eviction thread not to passivate it yet.
> // Note the Fqn we use is relative to the region!
> region.markNodeCurrentlyInUse(getFqn(id, true), MarkInUseWaitTime);
> otherwise the extra "bucket" level in the Fqn is missing.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list