Skip to content

Commit

Permalink
Fix/add pool max conns to connection string (#2)
Browse files Browse the repository at this point in the history
* chore: remove changelog

* chore: bump version

* fix: add pool_max_conns to connection string

* chore: update version in README
  • Loading branch information
jkoenig134 authored Jan 27, 2023
1 parent f026714 commit 7073a47
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 10 deletions.
7 changes: 0 additions & 7 deletions CHANGELOG.md

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@js-soft/ferretdb-github-action",
"version": "1.0.0",
"version": "1.0.1",
"description": "FerretDB GitHub Action",
"keywords": [
"github",
Expand Down
2 changes: 1 addition & 1 deletion start-ferretdb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7073a47

Please sign in to comment.