about summary refs log tree commit homepage
path: root/lib/PublicInbox/Inbox.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-10-12 11:47:04 +0000
committerEric Wong <e@80x24.org>2021-10-12 21:46:36 +0000
commit9f02576da775abf208f5a03c03b6f7abd72596d0 (patch)
tree49d24d01fca0987281d087862e5149c60928b68a /lib/PublicInbox/Inbox.pm
parent2a3c8d7a2c40ad9424db10d68470d8bb120bddf9 (diff)
downloadpublic-inbox-9f02576da775abf208f5a03c03b6f7abd72596d0.tar.gz
msgmap: ->new_file to supports $ibx arg, drop ->new
The original Msgmap->new API was v1-specific and not necessary.
The ->new_file API now supports an $ibx object being passed to
it, simplify -no_fsync use.  It will also make an upcoming
change easier...
Diffstat (limited to 'lib/PublicInbox/Inbox.pm')
-rw-r--r--lib/PublicInbox/Inbox.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/Inbox.pm b/lib/PublicInbox/Inbox.pm
index 61d153bf..74b8a74f 100644
--- a/lib/PublicInbox/Inbox.pm
+++ b/lib/PublicInbox/Inbox.pm
@@ -148,7 +148,7 @@ sub mm {
         $self->{mm} //= eval {
                 require PublicInbox::Msgmap;
                 _cleanup_later($self);
-                PublicInbox::Msgmap->new_file(mm_file($self));
+                PublicInbox::Msgmap->new_file($self);
         } // ($req ? croak("E: $@") : undef);
 }