[open-ils-commits] [GIT] Evergreen ILS branch rel_2_0 updated. 9cca4c3203b0f496930fa534b665f20e5775dcc9

Evergreen Git git at git.evergreen-ils.org
Wed Sep 7 12:05:30 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, rel_2_0 has been updated
       via  9cca4c3203b0f496930fa534b665f20e5775dcc9 (commit)
      from  f632be948ab419d9ceb6157542736ba78085a081 (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 9cca4c3203b0f496930fa534b665f20e5775dcc9
Author: Dan Wells <dbw2 at calvin.edu>
Date:   Tue Sep 6 12:14:39 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/extras/org_tree_js.pl b/Open-ILS/src/extras/org_tree_js.pl
index 50f34cb..01a31c2 100755
--- a/Open-ILS/src/extras/org_tree_js.pl
+++ b/Open-ILS/src/extras/org_tree_js.pl
@@ -30,7 +30,7 @@ $session->disconnect();
 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:
 Open-ILS/src/extras/org_tree_js.pl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list