Skip to content

Commit 78c2447

Browse files
committed
WicketApplication: Page cache size reduced from 5 to 3 MB (should be enough).
1 parent d141242 commit 78c2447

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projectforge-wicket/src/main/java/org/projectforge/web/wicket/WicketApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ public void onRequestHandlerResolved(RequestCycle cycle, IRequestHandler handler
341341

342342
// These settings help with preserving page state and isolation between users
343343
getStoreSettings().setAsynchronous(false);
344-
getStoreSettings().setMaxSizePerSession(Bytes.megabytes(5));
344+
getStoreSettings().setMaxSizePerSession(Bytes.megabytes(3));
345345
log.info("Using standard Wicket disk-based page store to fix session problems after Wicket 10 migration");
346346

347347
WicketSupport.register(SipgateDirectCallService.class, applicationContext.getBean(SipgateDirectCallService.class));

0 commit comments

Comments
 (0)