Increase retry_attempts to 3

This commit is contained in:
syeopite 2021-09-25 02:36:21 -07:00
parent d0480f5381
commit 4076bf73b3
No known key found for this signature in database
GPG key ID: 6FA616E5A5294A82
2 changed files with 2 additions and 2 deletions

View file

@ -33,7 +33,7 @@ db:
#checkout_timeout: 5
## Amount of retries when a connection is either lost or can't be established.
#retry_attempts: 1
#retry_attempts: 3
## Amount of seconds between each retry
#retry_delay: 1

View file

@ -223,7 +223,7 @@ struct DBConfig
property max_pool_size : Int32 = 0
property max_idle_pool_size : Int32 = 1
property checkout_timeout : Int32 = 5
property retry_attempts : Int32 = 1
property retry_attempts : Int32 = 3
property retry_delay : Int32 = 1
end