Przeglądaj źródła

Fix regression introduced in a77a875

matrix_synapse_systemd_service_post_start_delay_seconds is assigned a string value, and setup fails while creating the service file. It is impossible to compare str and int.
pull/4914/head
Amélie-Laura Lilith Krejčí 2 miesięcy temu
rodzic
commit
81b90a7089
Nie znaleziono w bazie danych klucza dla tego podpisu ID klucza GPG: 9ACEDB3BF0A8395C
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      roles/custom/matrix-synapse/templates/synapse/systemd/matrix-synapse.service.j2

+ 1
- 1
roles/custom/matrix-synapse/templates/synapse/systemd/matrix-synapse.service.j2 Wyświetl plik

@@ -74,7 +74,7 @@ ExecStart={{ devture_systemd_docker_base_host_command_docker }} start --attach m
ExecStartPost={{ matrix_synapse_systemd_healthcheck_command }}
{% endif %}

{% if matrix_synapse_systemd_service_post_start_delay_seconds > 0 %}
{% if matrix_synapse_systemd_service_post_start_delay_seconds | int > 0 %}
ExecStartPost=-{{ matrix_host_command_sleep }} {{ matrix_synapse_systemd_service_post_start_delay_seconds }}
{% endif %}



Ładowanie…
Anuluj
Zapisz