Github user jdanekrh commented on the issue:
https://github.com/apache/activemq-artemis/pull/1737
The test was broken in 2013 by @jbertram 's commit
https://github.com/hornetq/hornetq/pull/1879 for Jira
https://issues.jboss.org/browse/HORNETQ-1411.
The relevant diff is (abbreviated)
```diff
- private final long timeout;
+ private long timeout =
HornetQDefaultConfiguration.getDefaultGroupingHandlerTimeout();
[...]
+ public GroupingHandlerConfiguration()
{
- this.type = type;
- this.name = name;
- this.address = address;
- this.timeout = timeout;
- if (System.getProperty(GROUP_TIMEOUT_PROP_NAME) != null)
- {
- this.groupTimeout =
Long.parseLong(System.getProperty(GROUP_TIMEOUT_PROP_NAME));
- }
- else
- {
- this.groupTimeout = groupTimeout;
- }
-
- if (System.getProperty(REAPER_PERIOD_PROP_NAME) != null)
- {
- this.reaperPeriod =
Long.parseLong(System.getProperty(REAPER_PERIOD_PROP_NAME));
- }
- else
- {
- this.reaperPeriod = reaperPeriod;
- }
}
```
---