]
Paul Ferraro updated WFLY-13238:
--------------------------------
Description:
Consider the following:
{code:java}
session.setAttribute("foo", new AtomicInteger(0));
AtomicInteger value = (AtomicInteger) session.getAttribute("foo");
value.incrementAndGet();
{code}
When t
was:See workaround #3 in
Object returned by HttpSession.getAttribute(...) following a previous
setAttribute(...), not mutating correctly using ATTRIBUTE granularity when cache is
non-transactional.
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Key: WFLY-13238
URL:
https://issues.redhat.com/browse/WFLY-13238
Project: WildFly
Issue Type: Bug
Components: Clustering
Affects Versions: 19.0.0.Beta3
Reporter: Paul Ferraro
Assignee: Paul Ferraro
Priority: Critical
Consider the following:
{code:java}
session.setAttribute("foo", new AtomicInteger(0));
AtomicInteger value = (AtomicInteger) session.getAttribute("foo");
value.incrementAndGet();
{code}
When t