You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "ASF subversion and git services (JIRA)" <ji...@apache.org> on 2017/11/27 13:09:00 UTC

[jira] [Commented] (WICKET-6501) DefaultPageManagerProvider does not honour StoreSettings.setAsynchronous(false)

    [ https://issues.apache.org/jira/browse/WICKET-6501?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16266770#comment-16266770 ] 

ASF subversion and git services commented on WICKET-6501:
---------------------------------------------------------

Commit 383c40f2557e78ac852ca4ea4300901281902435 in wicket's branch refs/heads/WICKET-6501-store-settings from [~solomax]
[ https://git-wip-us.apache.org/repos/asf?p=wicket.git;h=383c40f ]

[WICKET-6501] storeSettings.isAsynchronous() is honored


> DefaultPageManagerProvider does not honour StoreSettings.setAsynchronous(false)
> -------------------------------------------------------------------------------
>
>                 Key: WICKET-6501
>                 URL: https://issues.apache.org/jira/browse/WICKET-6501
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket
>    Affects Versions: 8.0.0-M8
>            Reporter: Greg Johnson
>            Assignee: Maxim Solodovnik
>            Priority: Minor
>
> StoreSettings.setAsynchronous(false) does not prevent pageStore from being wrapped with AsynchronousPageStore 
> DefaultPageManagerProvider.java:
> if (pageStore.canBeAsynchronous()) 
> {
>     pageStore = new AsynchronousPageStore(pageStore, capacity);
> }
> Suggest:
> if (pageStore.canBeAsynchronous() && storeSettings.isAsynchronous())
> {
>     pageStore = new AsynchronousPageStore(pageStore, capacity);
> }



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)