@@ -, +, @@ background jobs run in Plack mode --- tools/batch_record_modification.pl | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) --- a/tools/batch_record_modification.pl +++ a/tools/batch_record_modification.pl @@ -237,12 +237,14 @@ if ( $op eq 'form' ) { } } - $job->set({ - view => 'report', - report => $report, - messages => \@messages, - }); - $job->progress( ++$progress ) if $runinbackground; + if ($runinbackground) { + $job->set({ + view => 'report', + report => $report, + messages => \@messages, + }); + $job->progress( ++$progress ); + } } if ($runinbackground) { --