[open-ils-commits] [GIT] Evergreen ILS branch tags/rel_2_1_0 updated. 8b35458c038fe052175886a11f80ae535d387ae4

Evergreen Git git at git.evergreen-ils.org
Wed Oct 5 09:14:52 EDT 2011


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, tags/rel_2_1_0 has been updated
       via  8b35458c038fe052175886a11f80ae535d387ae4 (commit)
      from  9adb28f04c3b035b93c4a333004713a85145c5a5 (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 8b35458c038fe052175886a11f80ae535d387ae4
Author: Dan Wells <dbw2 at calvin.edu>
Date:   Wed Sep 7 11:35:18 2011 -0400

    Clear org_unit cache fix for autogen.sh
    
    autogen.sh is not properly clearing the org_tree cache.  It is
    unclear how this hasn't caused a problem before, but this fix
    works for me and should be at least harmless in other enviroments.
    
    Signed-off-by: Dan Wells <dbw2 at calvin.edu>
    Signed-off-by: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>

diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Utils/Configure.pm b/Open-ILS/src/perlmods/lib/OpenILS/Utils/Configure.pm
index b324ac2..2501f59 100644
--- a/Open-ILS/src/perlmods/lib/OpenILS/Utils/Configure.pm
+++ b/Open-ILS/src/perlmods/lib/OpenILS/Utils/Configure.pm
@@ -91,7 +91,7 @@ sub org_tree_js {
     foreach my $locale (@$locales) {
         warn "removing OrgTree from the cache for locale " . $locale->code . "...\n";
         my $cache = OpenSRF::Utils::Cache->new;
-        $cache->delete_cache("orgtree.$locale->code");
+        $cache->delete_cache("orgtree.".$locale->code);
 
         # fetch the org_unit's and org_unit_type's
         my $e = OpenILS::Utils::CStoreEditor->new;

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

Summary of changes:
 .../src/perlmods/lib/OpenILS/Utils/Configure.pm    |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list