From 51413986e0f66a0ec2ccf0df56677f9e81fe715b Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 5 Mar 2019 09:28:36 +0100 Subject: [PATCH] Fix database configuration Signed-off-by: Joas Schilling --- autotest.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/autotest.sh b/autotest.sh index da9661f067b..303a3f0c809 100755 --- a/autotest.sh +++ b/autotest.sh @@ -229,9 +229,9 @@ function execute_tests { -e MYSQL_USER="$DATABASEUSER" \ -e MYSQL_PASSWORD=owncloud \ -e MYSQL_DATABASE="$DATABASENAME" \ - -d mysql:5.7 - --innodb_large_prefix=true - --innodb_file_format=barracuda + -d mysql:5.7 \ + --innodb_large_prefix=true \ + --innodb_file_format=barracuda \ --innodb_file_per_table=true) DATABASEHOST=$(docker inspect --format="{{.NetworkSettings.IPAddress}}" "$DOCKER_CONTAINER_ID")