From 0325f8989fce7ade960e0c1b58d695973bfcaf3e Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Tue, 25 Apr 2017 16:23:55 -0400 Subject: [PATCH] JBAS-1736 Remove unused, stranded transaction in LI fetcher Remove unnecessary and un-closed xact=>1 in custom lineitem fetching code. This avoids leaving cstore backends stranded. Signed-off-by: Bill Erickson --- Open-ILS/src/perlmods/lib/OpenILS/Application/Circ.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ.pm index 560c3900bb..77818e7c3c 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ.pm @@ -2188,7 +2188,7 @@ sub get_lineitem { my( $self, $client, $user_session, $id ) = @_; - my $e = new_editor(authtoken => $user_session, xact => 1); + my $e = new_editor(authtoken => $user_session); return $e->die_event unless $e->checkauth; my $meth = $self->method_lookup("open-ils.storage.asset.lineitem_by_id"); -- 2.11.0