This PR allows to define topics to ignore using wildcards (*, ?) rather than requiring an exact match. This patch should be backwards-compatible as exact match should still happen if there are no wildcards present.
A single * will match across / separators: *excludeme* will exclude foo/excludeme/bar.
As a side note, I have fixed the env var being documented with an incorrect name in README.md.
This PR allows to define topics to ignore using wildcards (
*
,?
) rather than requiring an exact match. This patch should be backwards-compatible as exact match should still happen if there are no wildcards present.A single
*
will match across/
separators:*excludeme*
will excludefoo/excludeme/bar
.As a side note, I have fixed the env var being documented with an incorrect name in
README.md
.