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

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

Commit e5ddaaaf5978ef5f68117902c44bbfffab3eb4b9 in wicket's branch 
refs/heads/wicket-6.x from [~solomax]
[ https://git-wip-us.apache.org/repos/asf?p=wicket.git;h=e5ddaaa ]

[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
>             Fix For: 8.0.0, 7.10.0, 6.29.0
>
>
> 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)

Reply via email to