Hi,
I found an obvious bug in Router.java accidentally. :)
In Router.java
---
public void removeFailureRecoveryAFDestination(final String componentName) {
messageAF.remove(componentName);
}
---
I think that it should be fixed like this:
---
public void removeFailureRecoveryAFDestination(final String componentName) {
failureRecoveryAF.remove(componentName);
}
---
Thanks.
--
Bongjae Chang