Skip to content

Commit

Permalink
update configurations to match receiving symbol fix dumperhq#14
Browse files Browse the repository at this point in the history
  • Loading branch information
nanophate authored Jan 4, 2023
1 parent b2e8ffe commit 1160175
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/dumper/database/postgresql.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ def set_config
(config[:adapter] == 'postgresql')

@config = {
:host => config['host'],
:port => config['port'],
:username => config['username'],
:password => config['password'],
:database => config['database'],
:host => config[:host],
:port => config[:port],
:username => config[:username],
:password => config[:password],
:database => config[:database],
:dump_tool => dump_tool_path
}
end
Expand Down

0 comments on commit 1160175

Please sign in to comment.