summaryrefslogtreecommitdiffstats
path: root/Bugzilla/JobQueue.pm
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-06-21 16:28:53 +0200
committerGitHub <noreply@github.com>2018-06-21 16:28:53 +0200
commit454a5dcf66f9b3eafb61badc6ce61c8ebe52dd96 (patch)
treef376f31bbd2da14bbbbdd2f221aa5da01bf1af38 /Bugzilla/JobQueue.pm
parent52100a9f4f2e5b5d3249934143fb9a7097f156f9 (diff)
downloadbugzilla-454a5dcf66f9b3eafb61badc6ce61c8ebe52dd96.tar.gz
bugzilla-454a5dcf66f9b3eafb61badc6ce61c8ebe52dd96.tar.xz
Bug 1461379 - refactor Bugzilla::DB to not subclass DBI
Diffstat (limited to 'Bugzilla/JobQueue.pm')
-rw-r--r--Bugzilla/JobQueue.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/JobQueue.pm b/Bugzilla/JobQueue.pm
index afb36673f..a78a4d0ae 100644
--- a/Bugzilla/JobQueue.pm
+++ b/Bugzilla/JobQueue.pm
@@ -59,7 +59,7 @@ sub new {
# to write to it.
my $self = $class->SUPER::new(
databases => [{
- dsn => Bugzilla->dbh_main->{private_bz_dsn},
+ dsn => Bugzilla->dbh_main->dsn,
user => $lc->{db_user},
pass => $lc->{db_pass},
prefix => 'ts_',