[Rt-commit] rt branch, 3.9-attributes_as_columns, updated. rt-3.9.6-38-gfa87d57

Alex Vandiver alexmv at bestpractical.com
Tue Nov 23 16:38:48 EST 2010


The branch, 3.9-attributes_as_columns has been updated
       via  fa87d57e3052c47de8ff138a7962682365bda59c (commit)
      from  71464a275f6c8c233d372933ad0da35208f792fd (commit)

Summary of changes:
 etc/upgrade/3.9.7/content |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

- Log -----------------------------------------------------------------
commit fa87d57e3052c47de8ff138a7962682365bda59c
Author: Alex Vandiver <alexmv at bestpractical.com>
Date:   Tue Nov 23 15:41:41 2010 -0500

    Minor error message wording nits on upgrade script

diff --git a/etc/upgrade/3.9.7/content b/etc/upgrade/3.9.7/content
index daf9c22..9dfb114 100644
--- a/etc/upgrade/3.9.7/content
+++ b/etc/upgrade/3.9.7/content
@@ -5,14 +5,14 @@ my $move_attributes = sub {
 
     my $res = $RT::Handle->SimpleQuery( $query, $column, $type );
     unless ( $res ) {
-        $RT::Logger->error("Failed move $type from Attributes into $table table");
+        $RT::Logger->error("Failed to move $column on $type from Attributes into $table table");
         return;
     }
 
     $query = 'DELETE FROM Attributes WHERE Name = ? AND ObjectType = ?';
     $res = $RT::Handle->SimpleQuery( $query, $column, $type );
     unless ( $res ) {
-        $RT::Logger->error("Failed to delete AuthTokens Attributes");
+        $RT::Logger->error("Failed to delete $column on $type from Attributes");
         return;
     }
     return 1;

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


More information about the Rt-commit mailing list