Skip to content

Commit

Permalink
Decrease default number of puma workers from 5 to 2
Browse files Browse the repository at this point in the history
Update default bundler version to 2.3.14
Update default puma version to 4.3.12
  • Loading branch information
ybykov-a9s committed Jun 1, 2022
1 parent db80bc8 commit 57b493e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v1
uses: actions/setup-go@v2.1.4
with:
go-version: 1.16
go-version: 1.18.x
- name: Checkout
uses: actions/checkout@v2
- name: Run Unit Tests
Expand All @@ -26,9 +26,9 @@ jobs:
needs: unit
steps:
- name: Setup Go
uses: actions/setup-go@v1
uses: actions/setup-go@v2.1.4
with:
go-version: 1.16
go-version: 1.18.x
- name: Checkout
uses: actions/checkout@v2
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* || true
Expand Down
6 changes: 3 additions & 3 deletions buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ api = "0.8"
pre-package = "./scripts/build.sh"

[metadata.configuration]
default_bundler_version = "2.2.24"
default_bundler_version = "2.3.14"

install_puma = true
[metadata.configuration.puma]
version = "4.3.8"
version = "4.3.12"
bind = "tcp://0.0.0.0:8080"
workers = "5"
workers = "2"
threads = "5"
preload = true

Expand Down

0 comments on commit 57b493e

Please sign in to comment.