]
Ryan Emerson resolved ISPN-9286.
--------------------------------
Resolution: Done
WriteBehindFaultToleranceTest Failures
--------------------------------------
Key: ISPN-9286
URL:
https://issues.jboss.org/browse/ISPN-9286
Project: Infinispan
Issue Type: Bug
Components: Core, Loaders and Stores
Affects Versions: 9.3.0.CR1
Reporter: Ryan Emerson
Assignee: Ryan Emerson
Fix For: 9.3.0.Final
#testBlockingOnStoreAvailabilityChange failure due to the async write not completing
before store.size is called.
{code:java}
java.lang.AssertionError: expected:<1> but was:<0>
at
org.infinispan.persistence.WriteBehindFaultToleranceTest.testBlockingOnStoreAvailabilityChange(WriteBehindFaultToleranceTest.java:55)
at org.infinispan.commons.test.TestNGLongTestsHook.run(TestNGLongTestsHook.java:24)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
... Removed 23 stack frames
{code}
#testWritesFailSilentlyWhenConfigured failure due to the async write not being executed
on the store before the entry is loaded from the store.
{code:java}
java.lang.NullPointerException
at
org.infinispan.persistence.WriteBehindFaultToleranceTest.testWritesFailSilentlyWhenConfigured(WriteBehindFaultToleranceTest.java:110)
at org.infinispan.commons.test.TestNGLongTestsHook.run(TestNGLongTestsHook.java:24)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
... Removed 18 stack frames
{code}