File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
prj/coherence-core/src/main/java/com/tangosol/net/cache Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2000, 2024 , Oracle and/or its affiliates.
2
+ * Copyright (c) 2000, 2025 , Oracle and/or its affiliates.
3
3
*
4
4
* Licensed under the Universal Permissive License v 1.0 as shown at
5
5
* https://oss.oracle.com/licenses/upl.
@@ -7146,7 +7146,10 @@ protected Iterator iterateKeys()
7146
7146
public boolean isEvictable (
7147
7147
ConfigurableCacheMap .Entry cacheEntry )
7148
7148
{
7149
- return m_queueWrite .accelerateEntryRipe ((Binary ) cacheEntry .getKey ());
7149
+ WriteQueue writeQueue = m_queueWrite ;
7150
+
7151
+ // COH-32208 - return false if writeQueue is null; writeQueue may be null if the RWBM is being released, e.g. truncate()
7152
+ return writeQueue == null ? false : writeQueue .accelerateEntryRipe ((Binary ) cacheEntry .getKey ());
7150
7153
}
7151
7154
};
7152
7155
You can’t perform that action at this time.
0 commit comments