Skip to content

Commit 4f8d9e1

Browse files
committed
remove dbg
1 parent a9613f8 commit 4f8d9e1

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

config/runtime.exs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ if config_env() == :test do
55
default_database_url = "postgresql://postgres:password@localhost:54321/electric?sslmode=disable"
66
database_url = System.get_env("DATABASE_URL", default_database_url)
77

8-
dbg(database_url)
9-
connection_opts = Electric.Config.parse_postgresql_uri!(database_url) |> dbg
8+
connection_opts = Electric.Config.parse_postgresql_uri!(database_url)
109

1110
config :electric,
1211
start_in_library_mode: true,

test/support/db_setup.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ defmodule Support.DbSetup do
99
]
1010

1111
def with_unique_db(ctx) do
12-
base_config = Application.fetch_env!(:electric, :connection_opts) |> dbg
12+
base_config = Application.fetch_env!(:electric, :connection_opts)
1313
{:ok, utility_pool} = start_db_pool(base_config)
1414
Process.unlink(utility_pool)
1515

0 commit comments

Comments
 (0)