From: Ivan Kohler Date: Tue, 7 Jun 2016 08:14:59 +0000 (-0700) Subject: log with a separate db connection X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=d3ab0ad3790e23c21b0e7afff6496bbc17f0b24a log with a separate db connection --- diff --git a/FS/FS/access_user_log.pm b/FS/FS/access_user_log.pm index 9e7f7a00e..ea7af8db5 100644 --- a/FS/FS/access_user_log.pm +++ b/FS/FS/access_user_log.pm @@ -2,6 +2,7 @@ package FS::access_user_log; use base qw( FS::Record ); use strict; +use FS::UID qw( dbh ); #use FS::Record qw( qsearch qsearchs ); use FS::CurrentUser; @@ -83,6 +84,11 @@ sub insert_new_path { '_date' => time, } ); + #so we can still log pages after a transaction-aborting SQL error (and then + # show the # error page) + local($FS::UID::dbh) = dbh->clone; + #if current transaction is aborted (if we had a way to check for it) + my $error = $self->insert; die $error if $error;