You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by jc...@apache.org on 2006/10/11 02:33:49 UTC

svn commit: r462649 - /incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/Session.java

Author: jcompagner
Date: Tue Oct 10 17:33:48 2006
New Revision: 462649

URL: http://svn.apache.org/viewvc?view=rev&rev=462649
Log:
oops.. wait must be called on the monitor object..

Modified:
    incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/Session.java

Modified: incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/Session.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/Session.java?view=diff&rev=462649&r1=462648&r2=462649
==============================================================================
--- incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/Session.java (original)
+++ incubator/wicket/branches/wicket-1.x/wicket/src/main/java/wicket/Session.java Tue Oct 10 17:33:48 2006
@@ -410,7 +410,7 @@
 				{
 					try
 					{
-						wait(20000); // wait 20 seconds max.
+						pageMapsUsedInRequest.wait(20000); // wait 20 seconds max.
 					}
 					catch (InterruptedException ex)
 					{