Set max database connections to 5 in config
This commit is contained in:
parent
c98379f13f
commit
f229d31398
@ -15,8 +15,11 @@ import { Payment } from '../payments/entities/payment.entity';
|
|||||||
password: configService.get('database.password'),
|
password: configService.get('database.password'),
|
||||||
database: configService.get('database.database'),
|
database: configService.get('database.database'),
|
||||||
entities: [Payment],
|
entities: [Payment],
|
||||||
|
extra: {
|
||||||
|
max: 5,
|
||||||
|
// connectionTimeoutMillis: 3000,
|
||||||
|
},
|
||||||
synchronize: false, // Apenas para desenvolvimento
|
synchronize: false, // Apenas para desenvolvimento
|
||||||
logging: process.env.NODE_ENV === 'development',
|
|
||||||
}),
|
}),
|
||||||
inject: [ConfigService],
|
inject: [ConfigService],
|
||||||
}),
|
}),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user