[open-ils-commits] ***SPAM*** [GIT] Evergreen ILS branch rel_2_6 updated. e3b4c1f770e91d6c60fc0a0a8c22bbf2dabd5836

Evergreen Git git at git.evergreen-ils.org
Thu Jun 5 20:05:09 EDT 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_6 has been updated
       via  e3b4c1f770e91d6c60fc0a0a8c22bbf2dabd5836 (commit)
      from  8a387abf16656d138652e568ca9c0915fce677e8 (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 e3b4c1f770e91d6c60fc0a0a8c22bbf2dabd5836
Author: Galen Charlton <gmc at esilibrary.com>
Date:   Thu Jun 5 15:16:23 2014 -0700

    LP#1326983: excluded fulfilled holds when adding hold_request.shelf_expires_soon events
    
    This patch adjusts the example A/T filter for the
    hold_request.shelf_expires_soon hook to exclude hold requests that are
    already marked as fulfilled.  This saves time creating events that
    would immediately be marked as invalid per the HoldIsAvailable
    validator.
    
    It also addresses an issue for large databases that have lots of
    fulfilled holds wherein hold_request.shelf_expires_soon events can
    fail to be added at all due to a cstore timeout.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    Signed-off-by: Ben Shum <bshum at biblio.org>

diff --git a/Open-ILS/examples/action_trigger_filters.json.example b/Open-ILS/examples/action_trigger_filters.json.example
index 31d713d..d24759d 100644
--- a/Open-ILS/examples/action_trigger_filters.json.example
+++ b/Open-ILS/examples/action_trigger_filters.json.example
@@ -16,7 +16,8 @@
             "capture_time": {"!=": null},
             "current_copy": {"!=": null},
             "shelf_time": {"!=": null},
-            "cancel_time": null
+            "cancel_time": null,
+            "fulfillment_time": null
         }
     },
     "hold_request.long_wait" : {

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

Summary of changes:
 .../examples/action_trigger_filters.json.example   |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list