-
Task
-
Resolution: Done
-
Minor
-
JBoss A-MQ 6.1
-
None
The sample in [1] uses
updateClusterFilter="*A*,*B*" />
This will throw an error as it does not appear to be a correct regular expression .
tcp://localhost/127.0.0.1:61617@63382 shutdown due to a local error: java.util.regex.PatternSyntaxException: Dangling meta character '*' near index 0
*A*
I think that is meant to be:
updateClusterFilter=".*A.*,.*B.*" />