summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-03-05 09:28:36 +0100
committerBackportbot <backportbot-noreply@rullzer.com>2019-03-05 10:02:08 +0000
commit6cc0d9fa20b9cd754d223e6981471146491896d0 (patch)
treed40ea2eec3eb7a43b3ed38f4d5c472838c2b68c7
parent6e5a93026c2077b3714490ab07f97eccfcf807de (diff)
downloadnextcloud-server-6cc0d9fa20b9cd754d223e6981471146491896d0.tar.gz
nextcloud-server-6cc0d9fa20b9cd754d223e6981471146491896d0.zip
Fix database configuration
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rwxr-xr-xautotest.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/autotest.sh b/autotest.sh
index f0ceca62b40..974573a4c76 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")