Skip to content

Commit

Permalink
chore: fix postgres build
Browse files Browse the repository at this point in the history
  • Loading branch information
pcnc committed Feb 20, 2023
1 parent bdb2ece commit 0516045
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ansible/tasks/test-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@
when: ebssurrogate_mode

- name: Drop pgTap extension
shell: /usr/lib/postgresql/bin/psql -U postgres -h localhost -d postgres -c "DROP extension if exists pgtap";
shell: /usr/lib/postgresql/bin/psql -U supabase_admin -h localhost -d postgres -c "DROP extension if exists pgtap";
when: ebssurrogate_mode

- name: Drop extension test function
shell: /usr/lib/postgresql/bin/psql -U postgres -h localhost -d postgres -c "DROP FUNCTION IF EXISTS install_available_extensions_and_test";
shell: /usr/lib/postgresql/bin/psql -U supabase_admin -h localhost -d postgres -c "DROP FUNCTION IF EXISTS install_available_extensions_and_test";
when: ebssurrogate_mode

- name: Reset db stats
Expand Down

0 comments on commit 0516045

Please sign in to comment.