Github user JiriOndrusek commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/2039#discussion_r183613601
--- Diff:
artemis-server/src/main/java/org/apache/activemq/artemis/core/server/impl/ActiveMQServerImpl.java
---
@@ -2323,6 +2324,16 @@ synchronized boolean initialisePart1(boolean
scalingDown) throws Exception {
deployAddressSettingsFromConfiguration();
}
+ //fix of ARTEMIS-1823
+ if (!configuration.isPersistenceEnabled()) {
+ for (AddressSettings addressSettings :
addressSettingsRepository.values()) {
+ if (addressSettings.getAddressFullMessagePolicy() ==
AddressFullMessagePolicy.PAGE) {
+ ActiveMQServerLogger.LOGGER.pageWillBePersisted();
--- End diff --
Hi, from the the issue text, it seems, that there is currently no customer
complaining about this - https://issues.jboss.org/browse/JBEAP-10498. Do you
think that this warning is senseless? (on the other hand it makes sense, when
persistence is turned off, paging is still persisting - which has to be..)
---