junegunn edited a comment on pull request #10774:
URL: https://github.com/apache/druid/pull/10774#issuecomment-770729568
We only enable request logger for the brokers, so `noop` for the other
components. I'm aware that `noop` logger is the default so we can just omit
`druid.request.logging.type` entry in the config files if we want it. But we
accidentally found this problem while writing our Ansible templates.
```jinja
# What we tried
druid.request.logging.type={{ historical_request_logging_type }}
```
To workaround the issue, we have to rewrite it like so:
```jinja
{% if historical_request_logging_type != 'noop' %}
druid.request.logging.type={{ historical_request_logging_type }}
{% endif %}
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]