From a2ea3d90c55236c3dcac2264ed9f5e79c517b035 Mon Sep 17 00:00:00 2001 From: Raffael Meyer Date: Fri, 17 Jan 2020 20:01:38 +0100 Subject: [PATCH] fix: bump MariaDB version Update MariaDB version from `10.2` to `10.3` to match requirement in README. By the way, is there any reason for the empty string being the default password and version? ```py def install_maridb(mysql_root_password='', version=''): # ... ``` --- bench/commands/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bench/commands/install.py b/bench/commands/install.py index e17ad08a..e1fa75f1 100644 --- a/bench/commands/install.py +++ b/bench/commands/install.py @@ -14,7 +14,7 @@ def install_prerequisites(): @click.command('mariadb') @click.option('--mysql_root_password') -@click.option('--version', default="10.2") +@click.option('--version', default="10.3") def install_maridb(mysql_root_password='', version=''): if mysql_root_password: extra_vars.update({