mirror of
https://github.com/BgaSol/sol-cloud
synced 2026-04-21 17:17:16 +00:00
feat(database): Configure the PostgreSQL connection timeout setting
This commit is contained in:
parent
ff0e93741e
commit
d976ea8a96
2 changed files with 3 additions and 2 deletions
|
|
@ -17,10 +17,10 @@ export type UserLoginDto = {
|
|||
/**
|
||||
* 验证码
|
||||
*/
|
||||
verificationCode: string;
|
||||
verificationCode?: string;
|
||||
/**
|
||||
* 验证码key
|
||||
*/
|
||||
verificationCodeKey: string;
|
||||
verificationCodeKey?: string;
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -15,3 +15,4 @@ spring:
|
|||
hikari:
|
||||
maximum-pool-size: 20
|
||||
minimum-idle: 2
|
||||
connection-timeout: 3000
|
||||
Loading…
Reference in a new issue