about summary refs log tree commit homepage
path: root/lib/PublicInbox/OverIdx.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/OverIdx.pm')
-rw-r--r--lib/PublicInbox/OverIdx.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/PublicInbox/OverIdx.pm b/lib/PublicInbox/OverIdx.pm
index 9f4a56fb..c521464a 100644
--- a/lib/PublicInbox/OverIdx.pm
+++ b/lib/PublicInbox/OverIdx.pm
@@ -443,7 +443,7 @@ sub commit_lazy {
 sub begin_lazy {
         my ($self) = @_;
         return if $self->{txn};
-        my $dbh = $self->connect or return;
+        my $dbh = $self->dbh or return;
         $dbh->begin_work;
         # $dbh->{Profile} = 2;
         $self->{txn} = 1;
@@ -469,7 +469,7 @@ sub create {
                 File::Path::mkpath(File::Basename::dirname($self->{filename}));
         }
         # create the DB:
-        PublicInbox::Over::connect($self);
+        PublicInbox::Over::dbh($self);
         $self->disconnect;
 }