From: Eric Wong Date: Fri, 15 Nov 2019 09:50:40 +0000 (+0000) Subject: import: only pass Inbox object to SearchIdx->new X-Git-Tag: v1.3.0~292 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=2500dfda84f86a8b83e89bf69cfd32ace54edead;p=public-inbox.git import: only pass Inbox object to SearchIdx->new SearchIdx->new no longer accepts a GIT_DIR path as its argument since commit 585314673236d664729fe3ab2d4fb229d1c0f2d5 ("searchidx: require PublicInbox::Inbox (or InboxWritable) ref") --- diff --git a/lib/PublicInbox/Import.pm b/lib/PublicInbox/Import.pm index e1f48771..cb25215d 100644 --- a/lib/PublicInbox/Import.pm +++ b/lib/PublicInbox/Import.pm @@ -179,9 +179,9 @@ sub _update_git_info ($$) { run_die([@cmd, qw(read-tree -m -v -i), $self->{ref}], $env); } run_die([@cmd, 'update-server-info'], undef); - ($self->{path_type} eq '2/38') and eval { + my $ibx = $self->{-inbox}; + ($ibx && $self->{path_type} eq '2/38') and eval { require PublicInbox::SearchIdx; - my $ibx = $self->{-inbox} || $git_dir; my $s = PublicInbox::SearchIdx->new($ibx); $s->index_sync({ ref => $self->{ref} }); };