From f8e6ff5653653b4d3484506d5f903b214038cefc Mon Sep 17 00:00:00 2001 From: Jeroen Baten Date: Thu, 16 Jun 2022 21:07:04 +0200 Subject: [PATCH] Trying to fix SCRAM error message Trying to fix SCRAM error message --- .github/workflows/maven.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index ebabac8aa..1322062b4 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -38,9 +38,9 @@ jobs: sudo systemctl start postgresql.service pg_isready - - name: Create scheduler user + - name: Create libreplan user run: | - sudo -u postgres psql --command="CREATE USER libreplan PASSWORD 'libreplan'" --command="\du" + sudo -u postgres psql --command="ALTER SYSTEM SET password_encryption = 'scram-sha-256'; CREATE USER libreplan PASSWORD 'libreplan'" --command="\du" - name: Create libreplandev database run: |