about summary refs log tree commit homepage
path: root/lib/PublicInbox/Lock.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-03-16 03:14:28 -0600
committerEric Wong <e@80x24.org>2021-03-16 15:47:43 -0400
commit250eb20216a83d43f7eb44b216ccab4b7ca38a61 (patch)
tree499237bf86e2731c4404d3d2a1e10c22b15f69bd /lib/PublicInbox/Lock.pm
parentfcb6e079c32ac2bbf5c5ee85e4d99b40c1b638d7 (diff)
downloadpublic-inbox-250eb20216a83d43f7eb44b216ccab4b7ca38a61.tar.gz
Unused as of commit dda8237aeb5722b3a48c31896d9b7398e50823f1
("lei_to_mail: prepare for worker offload") when we switched
to using the LeiOverview output lock.
Diffstat (limited to 'lib/PublicInbox/Lock.pm')
-rw-r--r--lib/PublicInbox/Lock.pm7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/PublicInbox/Lock.pm b/lib/PublicInbox/Lock.pm
index c0c4c15c..76c3ffb2 100644
--- a/lib/PublicInbox/Lock.pm
+++ b/lib/PublicInbox/Lock.pm
@@ -8,7 +8,6 @@ use v5.10.1;
 use Fcntl qw(:flock :DEFAULT);
 use Carp qw(croak);
 use PublicInbox::OnDestroy;
-use File::Temp ();
 
 # we only acquire the flock if creating or reindexing;
 # PublicInbox::Import already has the lock on its own.
@@ -58,10 +57,4 @@ sub lock_for_scope_fast {
         PublicInbox::OnDestroy->new(@single_pid, \&lock_release_fast, $self);
 }
 
-sub new_tmp {
-        my ($cls, $ident) = @_;
-        my $tmp = File::Temp->new("$ident.lock-XXXXXX", TMPDIR => 1);
-        bless { lock_path => $tmp->filename, tmp => $tmp }, $cls;
-}
-
 1;