Hello everybody,
We are in the process of migrating to wicket 7.10.0.
With reference to WICKET-6530, I have the following piece of code:
...
@Override
public void onClick() {
// DO SOMETHING
final Session session = Session.get();
session.invalidateNow();
final boolean *isSessionInvalidated *= session.isSessionInvalidated(); //
false
// DO SOMETHING
}
...
My question is: why is the value of *isSessionInvalidated *always *false?*.
Note: in wicket 7.9.0 the value of *isSessionInvalidated *is always true.
Thank you,
Gabor