Skip to content
This repository was archived by the owner on Apr 30, 2026. It is now read-only.

Commit 7073a47

Browse files
authored
Fix/add pool max conns to connection string (#2)
* chore: remove changelog * chore: bump version * fix: add pool_max_conns to connection string * chore: update version in README
1 parent f026714 commit 7073a47

4 files changed

Lines changed: 3 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
node-version: 18
2828

2929
- name: Start FerretDB
30-
uses: js-soft/ferretdb-github-action@1.0.0
30+
uses: js-soft/ferretdb-github-action@1.0.1
3131
with:
3232
ferretdb-version: 0.8.1
3333

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@js-soft/ferretdb-github-action",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "FerretDB GitHub Action",
55
"keywords": [
66
"github",

start-ferretdb.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ docker run --network ferretdb --name postgres \
1515

1616
docker run --network ferretdb --name ferretdb \
1717
-p $FERRETDB_PORT:27017 \
18-
-e FERRETDB_POSTGRESQL_URL=postgres://username:password@postgres:5432/ferretdb \
18+
-e FERRETDB_POSTGRESQL_URL=postgres://username:password@postgres:5432/ferretdb?pool_max_conns=40 \
1919
-d ghcr.io/ferretdb/ferretdb:${FERRETDB_VERSION}
2020

2121
if [ $? -ne 0 ]; then

0 commit comments

Comments
 (0)