Skip to content

Commit

Permalink
fix(core): Detect DB connection aquisition deadlocks (no-changelog)
Browse files Browse the repository at this point in the history
use a pool-size of 1 for sqlite-pooled as well
  • Loading branch information
netroy committed May 22, 2024
1 parent 870412f commit 6614fa1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci-postgres-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
timeout-minutes: 20
env:
DB_TYPE: sqlite
DB_SQLITE_POOL_SIZE: 4
DB_SQLITE_POOL_SIZE: 1
steps:
- uses: actions/[email protected]
- run: corepack enable
Expand Down Expand Up @@ -102,6 +102,7 @@ jobs:
timeout-minutes: 20
env:
DB_POSTGRESDB_PASSWORD: password
DB_POSTGRESDB_POOL_SIZE: 1 # Detect connection pooling deadlocks
steps:
- uses: actions/[email protected]
- run: corepack enable
Expand Down

0 comments on commit 6614fa1

Please sign in to comment.