[open-ils-commits] r7988 - branches/rel_1_2/Open-ILS/src/perlmods/OpenILS/Application/Storage/Driver/Pg

svn at svn.open-ils.org svn at svn.open-ils.org
Sun Nov 4 14:25:39 EST 2007


Author: dbs
Date: 2007-11-04 14:10:20 -0500 (Sun, 04 Nov 2007)
New Revision: 7988

Modified:
   branches/rel_1_2/Open-ILS/src/perlmods/OpenILS/Application/Storage/Driver/Pg/storage.pm
Log:
Backport from trunk: typo fix (trasaction -> transaction)


Modified: branches/rel_1_2/Open-ILS/src/perlmods/OpenILS/Application/Storage/Driver/Pg/storage.pm
===================================================================
--- branches/rel_1_2/Open-ILS/src/perlmods/OpenILS/Application/Storage/Driver/Pg/storage.pm	2007-11-04 19:08:10 UTC (rev 7987)
+++ branches/rel_1_2/Open-ILS/src/perlmods/OpenILS/Application/Storage/Driver/Pg/storage.pm	2007-11-04 19:10:20 UTC (rev 7988)
@@ -47,7 +47,7 @@
 		$pg->set_xact_session( $client->session );
 		my $xact_id = $pg->current_xact_id;
 
-		$log->debug("Beginning a new trasaction with Open-ILS XACT-ID [$xact_id]", INFO);
+		$log->debug("Beginning a new transaction with Open-ILS XACT-ID [$xact_id]", INFO);
 
 		my $dbh = OpenILS::Application::Storage::CDBI->db_Main;
 		
@@ -56,7 +56,7 @@
 
 		} catch Error with {
 			my $e = shift;
-			$log->debug("Failed to begin a new trasaction with Open-ILS XACT-ID [$xact_id]: ".$e, INFO);
+			$log->debug("Failed to begin a new transaction with Open-ILS XACT-ID [$xact_id]: ".$e, INFO);
 			throw $e;
 		};
 
@@ -67,7 +67,7 @@
 			}
 		);
 
-		$log->debug("Registered 'death' callback [$death_cb] for new trasaction with Open-ILS XACT-ID [$xact_id]", DEBUG);
+		$log->debug("Registered 'death' callback [$death_cb] for new transaction with Open-ILS XACT-ID [$xact_id]", DEBUG);
 
 		$client->session->session_data( death_cb => $death_cb );
 
@@ -80,7 +80,7 @@
 					__PACKAGE__->pg_commit_xaction;
 				}
 			);
-			$log->debug("Registered 'disconnect' callback [$dc_cb] for new trasaction with Open-ILS XACT-ID [$xact_id]", DEBUG);
+			$log->debug("Registered 'disconnect' callback [$dc_cb] for new transaction with Open-ILS XACT-ID [$xact_id]", DEBUG);
 			if ($client and $client->session) {
 				$client->session->session_data( disconnect_cb => $dc_cb );
 			}
@@ -153,12 +153,12 @@
 		my $success = 1;
 		try {
 			my $dbh = OpenILS::Application::Storage::CDBI->db_Main;
-			$log->debug("Rolling back a trasaction with Open-ILS XACT-ID [$xact_id]", INFO);
+			$log->debug("Rolling back a transaction with Open-ILS XACT-ID [$xact_id]", INFO);
 			$dbh->rollback;
 
 		} catch Error with {
 			my $e = shift;
-			$log->debug("Failed to roll back trasaction with Open-ILS XACT-ID [$xact_id]: ".$e, INFO);
+			$log->debug("Failed to roll back transaction with Open-ILS XACT-ID [$xact_id]: ".$e, INFO);
 			$success = 0;
 		};
 	



More information about the open-ils-commits mailing list