]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/GitAsyncCat.pm
git: set non-blocking flag in case of other bugs
[public-inbox.git] / lib / PublicInbox / GitAsyncCat.pm
index be51f673317eae824b85cc9f28f61aa9a221ad8a..dc97af16c09ed3e06ba1b727a5563dd3f32ea251 100644 (file)
@@ -3,11 +3,6 @@
 #
 # internal class used by PublicInbox::Git + PublicInbox::DS
 # This parses the output pipe of "git cat-file --batch"
-#
-# Note: this does NOT set the non-blocking flag, we expect `git cat-file'
-# to be a local process, and git won't start writing a blob until it's
-# fully read.  So minimize context switching and read as much as possible
-# and avoid holding a buffer in our heap any longer than it has to live.
 package PublicInbox::GitAsyncCat;
 use strict;
 use parent qw(PublicInbox::DS Exporter);
@@ -69,6 +64,7 @@ sub git_async_cat ($$$$) {
        $gitish->{async_cat} //= do {
                # read-only end of pipe (Gcf2Client is write-only end)
                my $self = bless { gitish => $gitish }, __PACKAGE__;
+               $gitish->{in}->blocking(0);
                $self->SUPER::new($gitish->{in}, EPOLLIN|EPOLLET);
                \undef; # this is a true ref()
        };