summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/Multi/Core.pm5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/Multi/Core.pm b/lib/Multi/Core.pm
index 82b3a9c6..3656f5b7 100644
--- a/lib/Multi/Core.pm
+++ b/lib/Multi/Core.pm
@@ -72,11 +72,8 @@ sub daemon_done {
sub load_pg {
- my @db = @{$VNDB::O{db_login}};
- my @dsn = DBI->parse_dsn($db[0]);
- my %vars = split /[,=]/, $dsn[4];
$PG = AnyEvent::Pg::Pool->new(
- {%vars, user => $db[1], password => $db[2], host => 'localhost'},
+ $VNDB::M{db_login},
timeout => 600, # Some maintenance queries can take a while to run...
on_error => sub { die "Lost connection to PostgreSQL\n"; },
on_connect_error => sub { die "Lost connection to PostgreSQL\n"; },