File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,9 @@ 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 )
9-
108 config :electric ,
119 start_in_library_mode: true ,
12- connection_opts: Electric.Utils . obfuscate_password ( connection_opts ) ,
10+ connection_opts: Electric.Config . parse_postgresql_uri! ( database_url ) ,
1311 # enable the http api so that the client tests against a real endpoint can
1412 # run against our embedded electric instance.
1513 # enable_http_api: true,
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ defmodule Phoenix.Sync.MixProject do
3838 { :ecto_sql , "~> 3.10" , optional: true } ,
3939 # require an exact version because electric moves very quickly atm
4040 # and a more generous specification would inevitably break.
41- { :electric , "== 1.0.1 " , optional: true } ,
41+ { :electric , "== 1.0.6 " , optional: true } ,
4242 { :electric_client , "== 0.3.0" }
4343 ] ++ deps_for_env ( Mix . env ( ) )
4444 end
You can’t perform that action at this time.
0 commit comments