From 59c9b333ff587ae13b8da1861998593ea56b1b21 Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Wed, 24 Jul 2019 16:35:25 +0200 Subject: [PATCH] you can specify both limit and offset in config.yaml for input --- run.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.pl b/run.pl index a8c4e70..cd940c9 100755 --- a/run.pl +++ b/run.pl @@ -435,7 +435,7 @@ foreach my $database ( sort keys %{ $config->databases } ) { my $input_db = new WebPAC::Input( module => $input_module, limit => $limit || $input->{limit}, - offset => $offset, + offset => $offset || $input->{offset}, recode => $input->{recode}, stats => $stats, modify_records => $input->{modify_records}, -- 2.20.1