Skip to content

Commit

Permalink
fix: bump MariaDB version
Browse files Browse the repository at this point in the history
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=''):
    # ...
```
  • Loading branch information
barredterra authored Jan 17, 2020
1 parent 5271e1e commit a2ea3d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bench/commands/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand Down

0 comments on commit a2ea3d9

Please sign in to comment.