Request Cycle TimeOut --------------------- Key: WICKET-852 URL: https://issues.apache.org/jira/browse/WICKET-852 Project: Wicket Issue Type: Bug Components: wicket Affects Versions: 1.2.6 Environment: Application server: jetty OS: Kubuntu Reporter: Yoshizaki Gustavo
In the init() method of the application (entends webApplication) I set: getRequestCycleSettings().setTimeout(Duration.ONE_HOUR ); But always get the following error: 09:00:05,290 ERROR [RequestCycle] java.lang.InterruptedException wicket.WicketRuntimeException: java.lang.InterruptedException at wicket.Session.getPage(Session.java:431) This is an error thrown in Session.class: try { pageMapsUsedInRequest.wait(timeout.getMilliseconds()); } catch (InterruptedException ex) { throw new WicketRuntimeException(ex); } -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.