Skip to content

Commit 6e98cfe

Browse files
committed
Enh 37162410 - RWBM.flush() should not call storeAll() if the entry set is empty. (12.2.1.4 -> ce-main, ce-v24.09, ce-v22.06 @111930)
[git-p4: depot-paths = "//dev/coherence-ce/release/coherence-ce-v24.09/": change = 112039]
1 parent d42ba63 commit 6e98cfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

prj/coherence-core/src/main/java/com/tangosol/net/cache/ReadWriteBackingMap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3522,7 +3522,7 @@ protected void flush(WriteQueue queue, StoreWrapper store)
35223522
}
35233523
}
35243524

3525-
if (fBatch)
3525+
if (fBatch && !setBatch.isEmpty())
35263526
{
35273527
try
35283528
{

0 commit comments

Comments
 (0)