From 051604519cc22c07fe6e7c558419f74fb8965aaa Mon Sep 17 00:00:00 2001 From: Paul Cioanca Date: Mon, 20 Feb 2023 21:36:54 +0200 Subject: [PATCH] chore: fix postgres build --- ansible/tasks/test-image.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/tasks/test-image.yml b/ansible/tasks/test-image.yml index b9bc04b82..573633a9a 100644 --- a/ansible/tasks/test-image.yml +++ b/ansible/tasks/test-image.yml @@ -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