X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=blobdiff_plain;f=lib%2FPublicInbox%2FConfig.pm;h=f78115b6e47b62c91f73b1d1599023774176de39;hp=ae9ad8deef9e910bd89c35388278522b388e47aa;hb=352e2799ecec328f71aa33219214a0e3fc3d5f10;hpb=de9648ca847cf032aab6da9cac1217bf9cca9c90 diff --git a/lib/PublicInbox/Config.pm b/lib/PublicInbox/Config.pm index ae9ad8de..f78115b6 100644 --- a/lib/PublicInbox/Config.pm +++ b/lib/PublicInbox/Config.pm @@ -90,29 +90,29 @@ sub lookup_name ($$) { } sub each_inbox { - my ($self, $cb, $arg) = @_; + my ($self, $cb, @arg) = @_; # may auto-vivify if config file is non-existent: foreach my $section (@{$self->{-section_order}}) { next if $section !~ m!\Apublicinbox\.([^/]+)\z!; my $ibx = lookup_name($self, $1) or next; - $cb->($ibx, $arg); + $cb->($ibx, @arg); } } sub iterate_start { - my ($self, $cb, $arg) = @_; + my ($self, $cb, @arg) = @_; my $i = 0; - $self->{-iter} = [ \$i, $cb, $arg ]; + $self->{-iter} = [ \$i, $cb, @arg ]; } # for PublicInbox::DS::next_tick, we only call this is if # PublicInbox::DS is already loaded sub event_step { my ($self) = @_; - my ($i, $cb, $arg) = @{$self->{-iter}}; + my ($i, $cb, @arg) = @{$self->{-iter}}; my $section = $self->{-section_order}->[$$i++]; delete($self->{-iter}) unless defined($section); - eval { $cb->($self, $section, $arg) }; + eval { $cb->($self, $section, @arg) }; warn "E: $@ in ${self}::event_step" if $@; PublicInbox::DS::requeue($self) if defined($section); }