[jbossseam-issues] [JBoss JIRA] Closed: (JBSEAM-2926) CLONE JBSEAM-2609 -Locking issue for ConversationEntry when using Conversation.instance().leave()
Pete Muir (JIRA)
jira-events at lists.jboss.org
Fri Apr 25 11:53:09 EDT 2008
[ http://jira.jboss.com/jira/browse/JBSEAM-2926?page=all ]
Pete Muir closed JBSEAM-2926.
-----------------------------
Fix Version/s: (was: 2.0.2.CR2)
Resolution: Rejected
http://anonsvn.jboss.org/repos/seam/tags/JBoss_Seam_2_0_2_CR1/src/main/org/jboss/seam/core/Manager.java
The fix was in 2.0.2.CR1
> CLONE JBSEAM-2609 -Locking issue for ConversationEntry when using Conversation.instance().leave()
> -------------------------------------------------------------------------------------------------
>
> Key: JBSEAM-2926
> URL: http://jira.jboss.com/jira/browse/JBSEAM-2926
> Project: Seam
> Issue Type: Bug
> Components: Core
> Affects Versions: 2.0.2.CR1
> Reporter: Tomas Cerny
> Assigned To: Pete Muir
> Priority: Minor
>
> When using Conversation.instance().leave(), it seems that the ConversationEntry lock is not released. *Sometimes* it can be obtained when attempting to resume the conversation but other times it cannot. This results in the user being redirected to the no-conversation-view-id after the concurrent-request-timeout expires.
> This can be observed by placing Conversation.instance.leave() in an action that redirects to another page. Then simply use the back-button and resume the conversation by clicking a link on the page. You may have to try this several times to get the result. I will see if I can create a reliable test case and attach it.
> Manager.switchConversation() performs an unlock of the ConversationEntry prior to switching, which would also make sense in the case of leave (since it is really a switch to a temp conversation).
> The workaround is simply executing the following:
> Code:
> Conversation conversation = Conversation.instance();
>
> ConversationEntry entry =
> ConversationEntries.instance().getConversationEntry(conversation.getId());
> conversation.leave();
> entry.unlock();
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the seam-issues
mailing list