feat(database): Configure the PostgreSQL connection timeout setting

This commit is contained in:
sol 2025-11-18 15:25:32 +08:00
parent ff0e93741e
commit d976ea8a96
2 changed files with 3 additions and 2 deletions

View file

@ -17,10 +17,10 @@ export type UserLoginDto = {
/**
*
*/
verificationCode: string;
verificationCode?: string;
/**
* key
*/
verificationCodeKey: string;
verificationCodeKey?: string;
};

View file

@ -15,3 +15,4 @@ spring:
hikari:
maximum-pool-size: 20
minimum-idle: 2
connection-timeout: 3000