Explorar el Código

Fix metrics listeners for Synapse workers

`::` leads to errors like:

> socket.gaierror: [Errno -9] Address family for hostname not supported
pull/456/head
Slavi Pantaleev hace 5 años
padre
commit
43059bb040
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      roles/matrix-synapse/templates/synapse/worker.yaml.j2

+ 1
- 1
roles/matrix-synapse/templates/synapse/worker.yaml.j2 Ver fichero

@@ -32,7 +32,7 @@ worker_listeners:
{% endif %} {% endif %}
{% if matrix_synapse_metrics_enabled %} {% if matrix_synapse_metrics_enabled %}
- type: metrics - type: metrics
bind_addresses: ['::']
bind_addresses: ['0.0.0.0']
port: {{ matrix_synapse_worker_details.metrics_port }} port: {{ matrix_synapse_worker_details.metrics_port }}
{% endif %} {% endif %}
{% endif %} {% endif %}


Cargando…
Cancelar
Guardar