gitlab: set default database pool count to 10

This commit is contained in:
Sameer Naik 2014-02-22 09:50:08 +05:30
parent b5ddb90fda
commit d0c532b953
2 changed files with 2 additions and 2 deletions

View File

@ -352,7 +352,7 @@ Below is the complete list of parameters that can be set using environment varia
* DB_POOL
The database database connection pool count. Defaults to 5.
The database database connection pool count. Defaults to 10.
* SMTP_HOST

View File

@ -22,7 +22,7 @@ DB_NAME=${DB_NAME:-gitlabhq_production}
DB_USER=${DB_USER:-root}
DB_PASS=${DB_PASS:-}
DB_INIT=${DB_INIT:-}
DB_POOL=${DB_POOL:-5}
DB_POOL=${DB_POOL:-10}
SMTP_HOST=${SMTP_HOST:-smtp.gmail.com}
SMTP_PORT=${SMTP_PORT:-587}