ARTEMIS-2656 NPE with read-whole-page == true

This commit is contained in:
Francesco Nigro 2020-03-13 13:51:37 +01:00
parent dc173d52f4
commit 2025cbbfd0
1 changed files with 3 additions and 1 deletions

View File

@ -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);
}