mirror of
https://github.com/apache/activemq-artemis.git
synced 2025-03-03 07:49:24 +00:00
ARTEMIS-2656 NPE with read-whole-page == true
This commit is contained in:
parent
dc173d52f4
commit
2025cbbfd0
@ -562,7 +562,9 @@ public class PageCursorProviderImpl implements PageCursorProvider {
|
||||
synchronized (softCache) {
|
||||
long pageId = (long) depagedPage.getPageId();
|
||||
softCache.remove(pageId);
|
||||
numberOfMessages.remove(pageId);
|
||||
if (numberOfMessages != null) {
|
||||
numberOfMessages.remove(pageId);
|
||||
}
|
||||
}
|
||||
onDeletePage(depagedPage);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user