xBis7 commented on code in PR #70517:
URL: https://github.com/apache/airflow/pull/70517#discussion_r3673870166
##########
airflow-core/src/airflow/config_templates/config.yml:
##########
@@ -1214,6 +1214,18 @@ metrics:
type: integer
example: ~
default: "8125"
+ statsd_socket_path:
Review Comment:
I think that the name shouldn't change. This is how `statsd` defines it
```python
class UnixSocketStatsClient(StreamClientBase):
"""Unix domain socket version of StatsClient."""
def __init__(self, socket_path, prefix=None, timeout=None):
```
The variable is actually called `socket_path`.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]