diff options
| author | Lilith <louise@louisem.space> | 2025-04-29 18:39:45 +0000 |
|---|---|---|
| committer | Lilith <louise@louisem.space> | 2025-04-29 18:39:45 +0000 |
| commit | f0278dcf893a1e62020ddb05c2a322adb6efeb35 (patch) | |
| tree | 2fc5e58aa695cd6ff9efc281f7575383d2634a3f /.config | |
| parent | merge: Merge stable into develop (!971) (diff) | |
| download | sharkey-f0278dcf893a1e62020ddb05c2a322adb6efeb35.tar.gz sharkey-f0278dcf893a1e62020ddb05c2a322adb6efeb35.tar.bz2 sharkey-f0278dcf893a1e62020ddb05c2a322adb6efeb35.zip | |
#1042 - Added extra connection option and comment for statement_timeout
Diffstat (limited to '.config')
| -rw-r--r-- | .config/ci.yml | 3 | ||||
| -rw-r--r-- | .config/cypress-devcontainer.yml | 3 | ||||
| -rw-r--r-- | .config/docker_example.yml | 3 | ||||
| -rw-r--r-- | .config/example.yml | 3 |
4 files changed, 12 insertions, 0 deletions
diff --git a/.config/ci.yml b/.config/ci.yml index 2126f76337..d3f86ab622 100644 --- a/.config/ci.yml +++ b/.config/ci.yml @@ -50,6 +50,9 @@ db: # Extra Connection options #extra: # ssl: true + # # Set a higher value if you have timeout issues during migration + # statement_timeout: 10000 + dbReplications: false diff --git a/.config/cypress-devcontainer.yml b/.config/cypress-devcontainer.yml index 9e4961c325..3fd45593b1 100644 --- a/.config/cypress-devcontainer.yml +++ b/.config/cypress-devcontainer.yml @@ -63,6 +63,9 @@ db: # Extra Connection options #extra: # ssl: true + # # Set a higher value if you have timeout issues during migration + # statement_timeout: 10000 + dbReplications: false diff --git a/.config/docker_example.yml b/.config/docker_example.yml index acbaec8023..e30cc09928 100644 --- a/.config/docker_example.yml +++ b/.config/docker_example.yml @@ -110,6 +110,9 @@ db: # Extra Connection options #extra: # ssl: true + # # Set a higher value if you have timeout issues during migration + # statement_timeout: 10000 + dbReplications: false diff --git a/.config/example.yml b/.config/example.yml index 08a5680c41..64d2f2e655 100644 --- a/.config/example.yml +++ b/.config/example.yml @@ -127,6 +127,9 @@ db: # Extra Connection options #extra: # ssl: true + # # Set a higher value if you have timeout issues during migration + # statement_timeout: 10000 + dbReplications: false |