From 923abdc20510c7ac2da7263ebd5f74a1b583786e Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 20 Feb 2020 16:59:32 +0100 Subject: [PATCH] Bug 22417: [DO NOT PUSH] Add sleep to notice the progress Signed-off-by: Tomas Cohen Arazi --- Koha/BackgroundJob/BatchUpdateBiblio.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/Koha/BackgroundJob/BatchUpdateBiblio.pm b/Koha/BackgroundJob/BatchUpdateBiblio.pm index 16f2e218e9..0870168aae 100644 --- a/Koha/BackgroundJob/BatchUpdateBiblio.pm +++ b/Koha/BackgroundJob/BatchUpdateBiblio.pm @@ -73,6 +73,7 @@ sub process { }; $report->{total_success}++; } + sleep(3); # FIXME Remove this, but testing purpose only! $job->progress( ++$job_progress )->store; } -- 2.20.1