From 7073a4746d8603cfb3a85d0c79572d0d99da11bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20K=C3=B6nig?= <33655937+jkoenig134@users.noreply.github.com> Date: Fri, 27 Jan 2023 15:40:56 +0100 Subject: [PATCH] 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 --- CHANGELOG.md | 7 ------- README.md | 2 +- package.json | 2 +- start-ferretdb.sh | 2 +- 4 files changed, 3 insertions(+), 10 deletions(-) delete mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 16b2307..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,7 +0,0 @@ -# Changelog - -## 1.0.0 - 2019-12-17 - -### Added - -- `1.0.0` release diff --git a/README.md b/README.md index eb11fd6..bc378b9 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ jobs: node-version: 18 - name: Start FerretDB - uses: js-soft/ferretdb-github-action@1.0.0 + uses: js-soft/ferretdb-github-action@1.0.1 with: ferretdb-version: 0.8.1 diff --git a/package.json b/package.json index 8a7779f..7a2adf3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@js-soft/ferretdb-github-action", - "version": "1.0.0", + "version": "1.0.1", "description": "FerretDB GitHub Action", "keywords": [ "github", diff --git a/start-ferretdb.sh b/start-ferretdb.sh index 2236099..14f2683 100644 --- a/start-ferretdb.sh +++ b/start-ferretdb.sh @@ -15,7 +15,7 @@ docker run --network ferretdb --name postgres \ docker run --network ferretdb --name ferretdb \ -p $FERRETDB_PORT:27017 \ - -e FERRETDB_POSTGRESQL_URL=postgres://username:password@postgres:5432/ferretdb \ + -e FERRETDB_POSTGRESQL_URL=postgres://username:password@postgres:5432/ferretdb?pool_max_conns=40 \ -d ghcr.io/ferretdb/ferretdb:${FERRETDB_VERSION} if [ $? -ne 0 ]; then