From a3b719d338ed11de86cfe618f55e87f8f324e42f Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Fri, 16 Jan 2015 11:40:49 -0500 Subject: [PATCH] JBAS-258 Raise fine generator query timeout Signed-off-by: Bill Erickson --- Open-ILS/src/support-scripts/fine_generator.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/support-scripts/fine_generator.pl b/Open-ILS/src/support-scripts/fine_generator.pl index 5d0ac8e816..160c069375 100755 --- a/Open-ILS/src/support-scripts/fine_generator.pl +++ b/Open-ILS/src/support-scripts/fine_generator.pl @@ -60,7 +60,7 @@ if ($parallel == 1) { my $storage = OpenSRF::AppSession->create("open-ils.storage"); my $r = $storage->request('open-ils.storage.action.circulation.overdue.id_list'); - while (my $resp = $r->recv(timeout => 600)) { + while (my $resp = $r->recv(timeout => 1200)) { my $circ_id = $resp->content; $multi_generator->request( 'open-ils.storage.action.circulation.overdue.generate_fines', $circ_id ); } -- 2.11.0