From 0b639cb5c2d3ebc3915f57e4cb06e2bf281783e1 Mon Sep 17 00:00:00 2001 From: ligc Date: Tue, 3 Dec 2013 13:14:23 +0800 Subject: [PATCH] fix for bug 3922: do not use autocommit=1 when reading database --- perl-xCAT/xCAT/DBobjUtils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-xCAT/xCAT/DBobjUtils.pm b/perl-xCAT/xCAT/DBobjUtils.pm index 2e0b32611..eebbe156b 100644 --- a/perl-xCAT/xCAT/DBobjUtils.pm +++ b/perl-xCAT/xCAT/DBobjUtils.pm @@ -616,7 +616,7 @@ sub getDBtable { # need to get info from DB - my $thistable = xCAT::Table->new($table, -create => 1, -autocommit => 0); + my $thistable = xCAT::Table->new($table, -create => 1); if (!$thistable) { return undef;