[open-ils-commits] ***SPAM*** [GIT] Evergreen ILS branch rel_2_4 updated. 44a00569ca41b00cb255f1f1c82f35e967dfa33c

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_4 has been updated
       via  44a00569ca41b00cb255f1f1c82f35e967dfa33c (commit)
       via  d4ac339171df250bd1e537b9195fd28fa6f346ed (commit)
      from  db00aaa8859bbb384e37b9305cf83f495f479c4c (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 44a00569ca41b00cb255f1f1c82f35e967dfa33c
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 6e9c5a9..2a34996 100644
--- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Vandelay.pm
+++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Vandelay.pm
@@ -179,7 +179,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 {
@@ -223,7 +223,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 d4ac339171df250bd1e537b9195fd28fa6f346ed
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 289d24b..7a02d99 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
@@ -800,9 +800,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