From e03a5cd2074bc533b2173d2f7dcefa8db5ae0d5e Mon Sep 17 00:00:00 2001 From: Varun Date: Thu, 26 Oct 2023 14:02:56 +1100 Subject: [PATCH] #1247 #1248 Feat: Cypress UI testing + Postgres Arg for installer --- development/installer.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/development/installer.py b/development/installer.py index a8ac6498..44aca431 100755 --- a/development/installer.py +++ b/development/installer.py @@ -198,7 +198,6 @@ def init_bench_if_not_exist(args): def create_site_in_bench(args): - mariadb_socket_option = "" if "mariadb" == args.db_type: cprint("Set db_host", level=3) subprocess.call( @@ -211,7 +210,7 @@ def create_site_in_bench(args): f"--db-host=mariadb", # Should match the compose service name f"--db-type={args.db_type}", # Add the selected database type f"--no-mariadb-socket", - f"--db-root-password=123", # Replace with your PostgreSQL password + f"--db-root-password=123", # Replace with your MariaDB password f"--admin-password={args.admin_password}", ] else: