From a1b96e3a5e5f44b0649e4edac62432e44afeebec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Jan=20Niemier?= Date: Fri, 21 Feb 2025 13:13:11 +0100 Subject: [PATCH] fix: do not verify TLS cert when connecting to the DB --- VERSION | 2 +- config/runtime.exs | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index e75da3e6..00355e29 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.3.6 +2.3.7 diff --git a/config/runtime.exs b/config/runtime.exs index 4bcec40b..8060e5a6 100644 --- a/config/runtime.exs +++ b/config/runtime.exs @@ -166,6 +166,9 @@ if config_env() != :test do config :supavisor, Supavisor.Repo, url: System.get_env("DATABASE_URL", "ecto://postgres:postgres@localhost:6432/postgres"), pool_size: System.get_env("DB_POOL_SIZE", "25") |> String.to_integer(), + ssl_opts: [ + verify: :verify_none + ], parameters: [ application_name: "supavisor_meta" ]