LP#1612873 - Fix text of notice message for history migration.
authorJosh Stompro <stomproj@larl.org>
Tue, 16 Aug 2016 14:55:21 +0000 (09:55 -0500)
committerGalen Charlton <gmc@esilibrary.com>
Wed, 16 Nov 2016 16:37:56 +0000 (11:37 -0500)
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@larl.org>
Signed-off-by: Chris Sharp <csharp@georgialibraries.org>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
Open-ILS/src/sql/Pg/upgrade/0960.schema.decouple_co_history.sql
Open-ILS/src/sql/Pg/version-upgrade/2.9.3-2.10.0-upgrade-db.sql

index 135c244..b55bbfb 100644 (file)
@@ -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;
index 9ed7e22..1e46baa 100644 (file)
@@ -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;