You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sk...@apache.org on 2008/04/18 08:57:52 UTC

svn commit: r649386 - /myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/OrchestraFacesContextFactory.java

Author: skitching
Date: Thu Apr 17 23:57:50 2008
New Revision: 649386

URL: http://svn.apache.org/viewvc?rev=649386&view=rev
Log:
Fix ORCHESTRA-23; serialize-requests feature is broken.
Thanks to Dan Tran for the patch.

Modified:
    myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/OrchestraFacesContextFactory.java

Modified: myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/OrchestraFacesContextFactory.java
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/OrchestraFacesContextFactory.java?rev=649386&r1=649385&r2=649386&view=diff
==============================================================================
--- myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/OrchestraFacesContextFactory.java (original)
+++ myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/OrchestraFacesContextFactory.java Thu Apr 17 23:57:50 2008
@@ -76,8 +76,8 @@
         // The handlers need to be reset on every request, as each request has a different
         // url which could potentially affect the list of handlers for that request.
         final LinkedList handlers = new LinkedList();
-        handlers.add(new ContextLockRequestHandler());
         handlers.add(new FrameworkAdapterRequestHandler());
+        handlers.add(new ContextLockRequestHandler());
         handlers.add(new ConversationManagerRequestHandler());
         handlers.add(new DataSourceLeakRequestHandler());