File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ 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- connection_opts = Electric.Config . parse_postgresql_uri! ( database_url )
8+ dbg ( database_url )
9+ connection_opts = Electric.Config . parse_postgresql_uri! ( database_url ) |> dbg
910
1011 config :electric ,
1112 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 )
12+ base_config = Application . fetch_env! ( :electric , :connection_opts ) |> dbg
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