about summary refs log tree commit homepage
path: root/lib/PublicInbox/GitAsyncCat.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/GitAsyncCat.pm')
-rw-r--r--lib/PublicInbox/GitAsyncCat.pm8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/PublicInbox/GitAsyncCat.pm b/lib/PublicInbox/GitAsyncCat.pm
index 2d601542..b32c2fd3 100644
--- a/lib/PublicInbox/GitAsyncCat.pm
+++ b/lib/PublicInbox/GitAsyncCat.pm
@@ -45,12 +45,6 @@ sub event_step {
         }
 }
 
-sub git_tmp_cleanup {
-        my ($git) = @_;
-        $git->cleanup(1) and
-                PublicInbox::DS::add_timer(3, \&git_tmp_cleanup, $git);
-}
-
 sub ibx_async_cat ($$$$) {
         my ($ibx, $oid, $cb, $arg) = @_;
         my $git = $ibx->{git} // $ibx->git;
@@ -69,8 +63,6 @@ sub ibx_async_cat ($$$$) {
                 $git->{async_cat} //= do {
                         my $self = bless { git => $git }, __PACKAGE__;
                         $git->{in}->blocking(0);
-                        $git->{-tmp} and PublicInbox::DS::add_uniq_timer(
-                                                3, \&git_tmp_cleanup, $git);
                         $self->SUPER::new($git->{in}, EPOLLIN|EPOLLET);
                         \undef; # this is a true ref()
                 };