[open-ils-commits] [GIT] Evergreen ILS branch master updated. 0e2f7fd8f40c12634bdcfa47bceabd0ddf60bbb6

Evergreen Git git at git.evergreen-ils.org
Wed Nov 9 10:21:08 EST 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, master has been updated
       via  0e2f7fd8f40c12634bdcfa47bceabd0ddf60bbb6 (commit)
      from  fc8925034444d844d6028d0984a2d3f971f2d746 (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 0e2f7fd8f40c12634bdcfa47bceabd0ddf60bbb6
Author: Jason Stephenson <jstephenson at mvlc.org>
Date:   Wed Nov 9 09:37:44 2011 -0500

    Fix a typo that snuck through the cracks in Cronscript.pm.in.
    
    We had Opensrf::AppSession rather than OpenSRF::AppSession, which isn't
    caught by the simple use_ok() tests that we largely rely on for our
    current Perl test suite. In addition, when we manually tested the change
    to Cronscript.pm.in, we didn't do both configure && make to ensure that
    the new version of Cronscript.pm reflected the changes. Lots to learn,
    luckily the method wasn't being used by anything else in Evergreen yet.
    
    Signed-off-by: Jason Stephenson <jstephenson at mvlc.org>
    Signed-off-by: Dan Scott <dscott at laurentian.ca>

diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Utils/Cronscript.pm.in b/Open-ILS/src/perlmods/lib/OpenILS/Utils/Cronscript.pm.in
index 4c0d66b..472c445 100644
--- a/Open-ILS/src/perlmods/lib/OpenILS/Utils/Cronscript.pm.in
+++ b/Open-ILS/src/perlmods/lib/OpenILS/Utils/Cronscript.pm.in
@@ -302,7 +302,7 @@ sub authenticate {
     if ($args && ref($args) eq 'HASH') {
         $self->{bootstrapped} or $self->bootstrap();
 
-        my $session = Opensrf::AppSession->create('open-ils.auth');
+        my $session = OpenSRF::AppSession->create('open-ils.auth');
         my $seed = $session->request(
             'open-ils.auth.authenticate.init', $args->{'username'}
         )->gather(1);

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

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


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list