Github user martin-g commented on a diff in the pull request:
https://github.com/apache/wicket/pull/210#discussion_r99935250
--- Diff:
wicket-core/src/main/java/org/apache/wicket/core/request/handler/PageProvider.java
---
@@ -54,15 +52,14 @@
private final Integer pageId;
- private IPageSource pageSource;
-
- private transient IRequestablePage pageInstance;
- private boolean pageInstanceIsFresh;
+ private transient IPageSource pageSource;
--- End diff --
IMO using `transient` is just delaying the problem.
`PageProvider` should not be serializable (IClusterable).
If it is serialized and then deserialized then most probably some call with
fail with NullPointerException because of those transient fields.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---