ylepikhov opened a new issue, #1870:
URL: https://github.com/apache/activemq/issues/1870
Abstract.reapplyInterceptor unwraps only outer CompositeDestinationFilter,
but totally ignores other DestinationFilter instances.
This behaviour applies to all recent version of ActiveMQ.
It might be easily fixed by changing this code^
```java
if (destination instanceof CompositeDestinationFilter) {
destination = ((CompositeDestinationFilter)
destination).next;
}
```
to
```java
while (destination instanceof
org.apache.activemq.broker.region.DestinationFilter) {
destination =
((org.apache.activemq.broker.region.DestinationFilter) destination).next;
}
```
It's desirable to fix this in 5.19.x.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact