[open-ils-commits] r14801 - trunk/Open-ILS/src/support-scripts (erickson)

svn at svn.open-ils.org svn at svn.open-ils.org
Thu Nov 5 23:16:24 EST 2009


Author: erickson
Date: 2009-11-05 23:16:22 -0500 (Thu, 05 Nov 2009)
New Revision: 14801

Modified:
   trunk/Open-ILS/src/support-scripts/action_trigger_runner.pl
Log:
up the timeout for batch event running to accomodate the initial wait for event retrieval and grouping

Modified: trunk/Open-ILS/src/support-scripts/action_trigger_runner.pl
===================================================================
--- trunk/Open-ILS/src/support-scripts/action_trigger_runner.pl	2009-11-05 22:48:33 UTC (rev 14800)
+++ trunk/Open-ILS/src/support-scripts/action_trigger_runner.pl	2009-11-06 04:16:22 UTC (rev 14801)
@@ -141,7 +141,7 @@
     return unless $opt_run_pending;
     my $ses = OpenSRF::AppSession->create('open-ils.trigger');
     my $req = $ses->request('open-ils.trigger.event.run_all_pending' => $opt_granularity);
-    while(my $resp = $req->recv(timeout => 600)) {
+    while(my $resp = $req->recv(timeout => 7200)) {
         if($opt_debug_stdout) {
             print OpenSRF::Utils::JSON->perl2JSON($resp->content) . "\n";
         }



More information about the open-ils-commits mailing list