Procházet zdrojové kódy

Do not wait needlessly when vacuuming or importing Postgres

pull/2223/head
Slavi Pantaleev před 3 roky
rodič
revize
a4662660d2
2 změnil soubory, kde provedl 6 přidání a 2 odebrání
  1. +3
    -1
      roles/matrix-postgres/tasks/import_postgres.yml
  2. +3
    -1
      roles/matrix-postgres/tasks/run_vacuum.yml

+ 3
- 1
roles/matrix-postgres/tasks/import_postgres.yml Zobrazit soubor

@@ -49,8 +49,10 @@
name: matrix-postgres
state: started
daemon_reload: true
register: matrix_postgres_import_start_result

- name: Wait a bit, so that Postgres can start
- when: matrix_postgres_import_start_result.changed | bool
name: Wait a bit, so that Postgres can start
ansible.builtin.wait_for:
timeout: "{{ postgres_start_wait_time }}"
delegate_to: 127.0.0.1


+ 3
- 1
roles/matrix-postgres/tasks/run_vacuum.yml Zobrazit soubor

@@ -28,8 +28,10 @@
name: matrix-postgres
state: started
daemon_reload: true
register: matrix_postgres_vacuum_start_result

- name: Wait a bit, so that Postgres can start
- when: matrix_postgres_vacuum_start_result.changed | bool
name: Wait a bit, so that Postgres can start
ansible.builtin.wait_for:
timeout: "{{ postgres_start_wait_time }}"
delegate_to: 127.0.0.1


Načítá se…
Zrušit
Uložit