[open-ils-commits] [GIT] Evergreen ILS branch master updated. abc63ac244d909e02886a428dc9a00666efd8742
Evergreen Git
git at git.evergreen-ils.org
Wed Nov 16 11:39:30 EST 2016
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 abc63ac244d909e02886a428dc9a00666efd8742 (commit)
from ad733ecdb31fbd4752c9f41e54cddfc4d4596ade (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 abc63ac244d909e02886a428dc9a00666efd8742
Author: Josh Stompro <stomproj at larl.org>
Date: Tue Aug 16 09:55:21 2016 -0500
LP#1612873 - Fix text of notice message for history migration.
The notice text that was outputed for every 10000 circs processed
was labeled as users, which made the output confusing.
Signed-off-by: Josh Stompro <stomproj at larl.org>
Signed-off-by: Chris Sharp <csharp at georgialibraries.org>
Signed-off-by: Galen Charlton <gmc at esilibrary.com>
diff --git a/Open-ILS/src/sql/Pg/upgrade/0960.schema.decouple_co_history.sql b/Open-ILS/src/sql/Pg/upgrade/0960.schema.decouple_co_history.sql
index 135c244..b55bbfb 100644
--- a/Open-ILS/src/sql/Pg/upgrade/0960.schema.decouple_co_history.sql
+++ b/Open-ILS/src/sql/Pg/upgrade/0960.schema.decouple_co_history.sql
@@ -242,7 +242,7 @@ BEGIN
-- useful for alleviating administrator anxiety.
IF counter % 10000 = 0 THEN
- RAISE NOTICE 'Migrated history for % total users', counter;
+ RAISE NOTICE 'Migrated history for % total circs', counter;
END IF;
counter := counter + 1;
diff --git a/Open-ILS/src/sql/Pg/version-upgrade/2.9.3-2.10.0-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/2.9.3-2.10.0-upgrade-db.sql
index 9ed7e22..1e46baa 100644
--- a/Open-ILS/src/sql/Pg/version-upgrade/2.9.3-2.10.0-upgrade-db.sql
+++ b/Open-ILS/src/sql/Pg/version-upgrade/2.9.3-2.10.0-upgrade-db.sql
@@ -1556,7 +1556,7 @@ BEGIN
-- useful for alleviating administrator anxiety.
IF counter % 10000 = 0 THEN
- RAISE NOTICE 'Migrated history for % total users', counter;
+ RAISE NOTICE 'Migrated history for % total circs', counter;
END IF;
counter := counter + 1;
-----------------------------------------------------------------------
Summary of changes:
.../Pg/upgrade/0960.schema.decouple_co_history.sql | 2 +-
.../Pg/version-upgrade/2.9.3-2.10.0-upgrade-db.sql | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list