Skip to content

Commit

Permalink
fix: Revert default poolsize for checker to 1 (#846)
Browse files Browse the repository at this point in the history
  • Loading branch information
filipecabaco committed Apr 12, 2024
1 parent 4a02133 commit df817db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/realtime/helpers.ex
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ defmodule Realtime.Helpers do
name = settings["db_name"]
user = settings["db_user"]
password = settings["db_password"]
pool = settings["db_pool"] || 5
pool = settings["db_pool"] || 1
queue_target = settings["db_queue_target"] || 2000

opts = %{
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Realtime.MixProject do
def project do
[
app: :realtime,
version: "2.28.18",
version: "2.28.19",
elixir: "~> 1.14.0",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
Expand Down

0 comments on commit df817db

Please sign in to comment.