[open-ils-commits] ***SPAM*** [GIT] Evergreen ILS branch rel_2_5 updated. 201eff673138018df4ef9bf83f5916ab24a59790

Evergreen Git git at git.evergreen-ils.org
Fri Feb 14 19:40:13 EST 2014


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, rel_2_5 has been updated
       via  201eff673138018df4ef9bf83f5916ab24a59790 (commit)
       via  7693c0fc9bed8d97de74213c1fed7de796d9816d (commit)
      from  6a208fccd3cc6ecf1838acda03bc9f7723b4ed9c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 201eff673138018df4ef9bf83f5916ab24a59790
Author: Bill Erickson <berick at esilibrary.com>
Date:   Mon Dec 30 13:49:01 2013 -0500

    Vandelay: increase queued item creation timeout
    
    Allow up to 10 minutes to create each queued vandelay record to avoid
    timeouts in item creation caused by pathologicaly long-running record
    match set queries.
    
    Signed-off-by: Bill Erickson <berick at esilibrary.com>
    Signed-off-by: Ben Shum <bshum at biblio.org>

diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Vandelay.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Vandelay.pm
index 0bb52d6..26eddad 100644
--- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Vandelay.pm
+++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Vandelay.pm
@@ -181,7 +181,7 @@ sub _add_bib_rec {
     $rec->purpose( $purpose ) if ($purpose);
     $rec->bib_source($bib_source);
 
-    return $e->create_vandelay_queued_bib_record( $rec );
+    return $e->create_vandelay_queued_bib_record( $rec, {timeout => 600} );
 }
 
 sub add_record_to_authority_queue {
@@ -225,7 +225,7 @@ sub _add_auth_rec {
     $rec->queue( $queue );
     $rec->purpose( $purpose ) if ($purpose);
 
-    return $e->create_vandelay_queued_authority_record( $rec );
+    return $e->create_vandelay_queued_authority_record( $rec, {timeout => 600} );
 }
 
 sub process_spool {

commit 7693c0fc9bed8d97de74213c1fed7de796d9816d
Author: Mike Rylander <mrylander at gmail.com>
Date:   Thu Sep 12 13:26:21 2013 -0400

    Keep standard INNER joins above possible OUTERs
    
    We always join metabib.record_attr, and we always use an INNER join
    to the core table, so keep that join first.  Likewise with the join
    to biblio.record_entry.  Dynamic joins may be OUTER, though, and while
    join reordering in Postgres is smart, let's not give it the chance to
    fail.
    
    Signed-off-by: Mike Rylander <mrylander at gmail.com>
    Signed-off-by: Ben Shum <bshum at biblio.org>

diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Driver/Pg/QueryParser.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Driver/Pg/QueryParser.pm
index 3a7f367..7d0aae0 100644
--- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Driver/Pg/QueryParser.pm
+++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Driver/Pg/QueryParser.pm
@@ -802,9 +802,9 @@ SELECT  $key AS id,
         $rank AS rank, 
         FIRST(mrd.attrs->'date1') AS tie_break
   FROM  metabib.metarecord_source_map m
-        $$flat_plan{from}
         $mra_join
         $bre_join
+        $$flat_plan{from}
   WHERE 1=1
         $flat_where
   GROUP BY 1

-----------------------------------------------------------------------

Summary of changes:
 .../Application/Storage/Driver/Pg/QueryParser.pm   |    2 +-
 .../perlmods/lib/OpenILS/Application/Vandelay.pm   |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list