Skip to content

Commit

Permalink
increase max_connections for node js postgres tests (#1841)
Browse files Browse the repository at this point in the history
  • Loading branch information
lolopinto authored Nov 10, 2024
1 parent 4b6b144 commit 42f9d81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
env:
POSTGRES_PASSWORD: postgres
name: 'PGOPTIONS'
value: '-c max_connections=200'
value: '-c max_connections=1000'
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
Expand Down
2 changes: 1 addition & 1 deletion ts/src/core/db_postgres_parallel.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ test("lots of writes at once", async () => {
user,
password,
database: tdb.getDB(),
max: 100,
max: 1000,
host: "localhost",
},
});
Expand Down

0 comments on commit 42f9d81

Please sign in to comment.