From cffa456e32c4c04d4b1a3087a4f0c77e927488c3 Mon Sep 17 00:00:00 2001 From: Esurio Date: Sat, 30 Aug 2025 09:51:47 +0300 Subject: [PATCH 1/2] =?UTF-8?q?chore:=20db.extra=E3=81=AB=E9=96=A2?= =?UTF-8?q?=E3=81=99=E3=82=8B=E3=82=B3=E3=83=A1=E3=83=B3=E3=83=88=E3=81=A8?= =?UTF-8?q?=E4=BE=8B=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/example.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.config/example.yml b/.config/example.yml index c127eaae22..c359ac4c89 100644 --- a/.config/example.yml +++ b/.config/example.yml @@ -123,8 +123,11 @@ db: #disableCache: true # Extra Connection options + # You can use extra options for connection pool, such as SSL or Statement Timeout. + # For more details and options, see: https://github.com/brianc/node-postgres/blob/master/packages/pg-pool/README.md #extra: # ssl: true + # statement_timeout: 10000 dbReplications: false From 4b0d57f51dc4f9a60daa1d95cedaf88275cb5a5c Mon Sep 17 00:00:00 2001 From: Esurio Date: Sat, 30 Aug 2025 10:09:37 +0300 Subject: [PATCH 2/2] =?UTF-8?q?chore:=20=E6=9C=80=E5=A4=A7/=E6=9C=80?= =?UTF-8?q?=E5=B0=8F=E3=81=AE=E3=82=B3=E3=83=8D=E3=82=AF=E3=82=B7=E3=83=A7?= =?UTF-8?q?=E3=83=B3=E3=83=97=E3=83=BC=E3=83=AB=E3=82=B5=E3=82=A4=E3=82=BA?= =?UTF-8?q?=E3=81=AB=E9=96=A2=E3=81=99=E3=82=8B=E8=A8=98=E8=BF=B0=E3=82=92?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/example.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.config/example.yml b/.config/example.yml index c359ac4c89..420ce52796 100644 --- a/.config/example.yml +++ b/.config/example.yml @@ -123,11 +123,14 @@ db: #disableCache: true # Extra Connection options - # You can use extra options for connection pool, such as SSL or Statement Timeout. + # You can use extra options for connection pool, such as SSL, Statement Timeout or max/minimum pool size. # For more details and options, see: https://github.com/brianc/node-postgres/blob/master/packages/pg-pool/README.md #extra: # ssl: true # statement_timeout: 10000 + # # Minimum/maximum pool size + # min: 2 + # max: 100 dbReplications: false