Simon Marechal
Simon Marechal
What happens is that envoy converts all header names to lowercase, so it expects them to be matched as lowercase, whereas the standard is to capitalize them. I can't really...
All regex comparisons should be caseless!
Ah it's not a regex at all, I was mistaken. For headers specifically it might make sense to convert it to lowercase indeed, and it wouldn't break everything.
Tentative implementation in #1084 that converts all header names to lowercase when loading the configuration.
The current behavior is that requests that do not have the "event" set are polled together, which indeed doesn't sound like something the user would want. Is that OK to...
PR submitted.
We will fix the status issue, but what about the tags? Should they be added when the acl / content filter is inactive, or not?
The problem is that we currently do flow/limits at once to limit the amount of Redis queries. We will need to cut that in two parts to make sure we...
Right now all parameters marked to be masked are masked, whether or not their value match. According to the docs this is indeed a bug. I will try to fix...
Change of course : a parameter marked for masking should always be masked, documentation has to be modified.