[
https://issues.apache.org/jira/browse/ARTEMIS-2504?focusedWorklogId=318685&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-318685
]
ASF GitHub Bot logged work on ARTEMIS-2504:
-------------------------------------------
Author: ASF GitHub Bot
Created on: 26/Sep/19 01:19
Start Date: 26/Sep/19 01:19
Worklog Time Spent: 10m
Work Description: michaelandrepearce commented on pull request #2850:
ARTEMIS-2504 implement retroactive addresses
URL: https://github.com/apache/activemq-artemis/pull/2850#discussion_r328401160
##########
File path:
artemis-server/src/main/java/org/apache/activemq/artemis/core/deployers/impl/FileConfigurationParser.java
##########
@@ -1170,6 +1172,10 @@ public SecuritySettingPlugin run() {
addressSettings.setDefaultConsumerWindowSize(XMLUtil.parseInt(child));
} else if (DEFAULT_RING_SIZE.equalsIgnoreCase(name)) {
addressSettings.setDefaultRingSize(XMLUtil.parseLong(child));
+ } else if (RETROACTIVE_MESSAGE_COUNT.equalsIgnoreCase(name)) {
+ long retroactiveMessageCount = XMLUtil.parseLong(child);
+ Validators.GE_ZERO.validate(DEFAULT_ADDRESS_ROUTING_TYPE,
retroactiveMessageCount);
Review comment:
Default address routing type in the validator for msg count?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 318685)
Time Spent: 2.5h (was: 2h 20m)
> Support retroactive addresses
> -----------------------------
>
> Key: ARTEMIS-2504
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2504
> Project: ActiveMQ Artemis
> Issue Type: New Feature
> Reporter: Justin Graham Bertram
> Assignee: Justin Graham Bertram
> Priority: Major
> Time Spent: 2.5h
> Remaining Estimate: 0h
>
--
This message was sent by Atlassian Jira
(v8.3.4#803005)