Description
Using a wildcard address include match in federation, include test.# is too lenient which points to a bug in the address settings matcher that is in play.
the attached test shows the problem.
final Match<?> underTest = new Match<>("test.#", null, new WildcardConfiguration());
Predicate<String> predicate = underTest.getPattern().asPredicate();
assertTrue(predicate.test("test.A"));
assertFalse(predicate.test("testing.A"));
Attachments
Attachments
Issue Links
- links to