Hi all, when ingesting with the cli - why is this ...
# troubleshoot
h
Hi all, when ingesting with the cli - why is this not working:
schema_pattern:
deny:
- '.*'
allow:
- 'myschema.*'
If I remove the deny clause it does work. I just find it confusing behavior.
p
.*
will deny everything, is that your intention here?
h
deny everything, allow only myschema ... sounded reasonable to me?
p
I think you only need the allow part here to achieve your goal Setting
myschema.*
will only parse schemas that match that regex, no need to also say "and deny everything else"
👍 1
h
The semantics of the allow/deny pattern are (not in deny list && in allow list).