Github user JiriOndrusek commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/2039#discussion_r184335547
--- 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 --
I agree with you. I've changed log level to INFO.
---