File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments