Skip to content

Commit 93cffc9

Browse files
committed
fix(config): use ipv4
Signed-off-by: SphericalKat <amolele@gmail.com>
1 parent 9ca84b5 commit 93cffc9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config/releases.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ config :ketbin, Ketbin.Repo,
4242
username: db_username,
4343
password: db_password,
4444
hostname: db_host,
45-
port: db_port,
45+
port: String.to_integer(db_port),
4646
# verify: :verify_peer,
47-
socket_options: [:inet6],
47+
socket_options: [:inet],
4848
pool_size: String.to_integer(System.get_env("POOL_SIZE") || "10")
4949
# cacertfile: "priv/cert.pem"
5050
secret_key_base =

0 commit comments

Comments
 (0)