Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2015-01-09 14:45:26 +0300
committermattab <matthieu.aubry@gmail.com>2015-01-09 14:45:26 +0300
commit8402983e084efbc00400939953b834e5b115c323 (patch)
tree2c06f28fbcf4479c4637b5ee7b919194495ed8bc /.travis.yml
parent4ce32a53de7020c858375e076951d894940b9d20 (diff)
refs #6557
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 11ab9ca5ab..9187d619b6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -108,7 +108,11 @@ before_script:
# configure mysql
- mysql -e "SET GLOBAL sql_mode = 'NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES'" # Travis default
- - mysql -e "SET GLOBAL wait_timeout = 3600" # try to avoid mysql has gone away errors
+ # try to avoid mysql has gone away errors
+ - mysql -e "SET GLOBAL wait_timeout = 36000;"
+ - mysql -e "SET GLOBAL max_allowed_packet = 128M;"
+ - mysql -e "SHOW VARIABLES max_allowed_packet;"
+ - mysql -e "SHOW VARIABLES wait_timeout;"
- mysql -e "SELECT @@sql_mode;"
# - mysql -e "SHOW GLOBAL VARIABLES;"