mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
feat(core): Add mysql pool size and increase it for CI (no-changelog) (#19347)
This commit is contained in:
@@ -113,6 +113,10 @@ class MysqlConfig {
|
||||
/** MySQL database user */
|
||||
@Env('DB_MYSQLDB_USER')
|
||||
user: string = 'root';
|
||||
|
||||
/** MySQL connection pool size */
|
||||
@Env('DB_MYSQLDB_POOL_SIZE')
|
||||
poolSize: number = 10;
|
||||
}
|
||||
|
||||
@Config
|
||||
|
||||
@@ -69,6 +69,7 @@ describe('GlobalConfig', () => {
|
||||
password: '',
|
||||
port: 3306,
|
||||
user: 'root',
|
||||
poolSize: 10,
|
||||
},
|
||||
postgresdb: {
|
||||
database: 'n8n',
|
||||
|
||||
Reference in New Issue
Block a user