From e9458a4d903867861cf8acbb7e03b0598888f064 Mon Sep 17 00:00:00 2001 From: erickson Date: Mon, 28 Jan 2008 20:54:13 +0000 Subject: [PATCH] drastically up the timeout for these long-running transactions git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_2_1@8517 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/src/perlmods/OpenILS/Application/Collections.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Collections.pm b/Open-ILS/src/perlmods/OpenILS/Application/Collections.pm index adde626ed0..1173c2ec8c 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Collections.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Collections.pm @@ -121,7 +121,7 @@ sub users_of_interest { $conn->status( new OpenSRF::DomainObject::oilsContinueStatus ); my $total; - while( my $resp = $req->recv(timeout => 600) ) { + while( my $resp = $req->recv(timeout => 7200) ) { return $req->failed if $req->failed; my $hash = $resp->content; next unless $hash; @@ -222,7 +222,7 @@ sub users_with_activity { $conn->status( new OpenSRF::DomainObject::oilsContinueStatus ); my $total; - while( my $resp = $req->recv(timeout => 600) ) { + while( my $resp = $req->recv(timeout => 7200) ) { unless($total) { $total = time - $start; -- 2.11.0