Commit 5163a8fcb9cfd63435560fda00173b76df2ccc93

Authored by Jacob Vosmaer
1 parent ab7b8b21

Disable connection reaping for MySQL

On GitLab Cloud, MySQL connection reaping seemed to cause more problems
(exceptions and segfaults in the native MySQL client) than it solved.
Showing 2 changed files with 1 additions and 1 deletions   Show diff stats
CHANGELOG
... ... @@ -9,6 +9,7 @@ v 6.8.0
9 9 - Changed permission of gitlab-satellites directory not to be world accessible
10 10 - Protected branch does not allow force push
11 11 - Fix popen bug in `rake gitlab:satellites:create`
  12 + - Disable connection reaping for MySQL
12 13  
13 14 v 6.7.3
14 15 - Fix the merge notification email not being sent (Pierre de La Morinerie)
... ...
config/database.yml.mysql
... ... @@ -7,7 +7,6 @@ production:
7 7 reconnect: false
8 8 database: gitlabhq_production
9 9 pool: 10
10   - reaping_frequency: 10
11 10 username: git
12 11 password: "secure password"
13 12 # host: localhost
... ...