Skip to content

Commit

Permalink
Fix app envs
Browse files Browse the repository at this point in the history
  • Loading branch information
ziopio committed Jul 18, 2023
1 parent 16ff16c commit f7d899e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/grisp_seawater_client.erl
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ start_link() ->
gen_server:start_link({local, ?MODULE}, ?MODULE, [], []).

connect() ->
{ok, Domain} = application:get_env(seawater_domain),
{ok, Port} = application:get_env(seawater_port),
{ok, Domain} = application:get_env(grisp_seawater, seawater_domain),
{ok, Port} = application:get_env(grisp_seawater, seawater_port),
connect(Domain, Port).

connect(Server, Port) ->
Expand Down

0 comments on commit f7d899e

Please sign in to comment.