about summary refs log tree commit homepage
path: root/lib/PublicInbox/CidxComm.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/CidxComm.pm')
-rw-r--r--lib/PublicInbox/CidxComm.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/PublicInbox/CidxComm.pm b/lib/PublicInbox/CidxComm.pm
index c7ab3c10..80a235e9 100644
--- a/lib/PublicInbox/CidxComm.pm
+++ b/lib/PublicInbox/CidxComm.pm
@@ -13,8 +13,8 @@ use parent qw(PublicInbox::DS);
 use PublicInbox::Syscall qw(EPOLLIN EPOLLONESHOT);
 
 sub new {
-        my ($cls, $rd, $cidx) = @_;
-        my $self = bless { cidx => $cidx }, $cls;
+        my ($cls, $rd, $cidx, $drs) = @_;
+        my $self = bless { cidx => $cidx, drs => $drs }, $cls;
         $self->SUPER::new($rd, EPOLLIN|EPOLLONESHOT);
 }
 
@@ -22,7 +22,7 @@ sub event_step {
         my ($self) = @_;
         my $rd = $self->{sock} // return warn('BUG?: no {sock}');
         $self->close; # EPOLL_CTL_DEL
-        delete($self->{cidx})->cidx_read_comm($rd);
+        delete($self->{cidx})->cidx_read_comm($rd, delete $self->{drs});
 }
 
 1;