From 089ea2da87e78e31bd838192452e4bba8c7b8537 Mon Sep 17 00:00:00 2001 From: ligc Date: Tue, 19 Nov 2013 15:49:26 +0800 Subject: [PATCH] fix for bug 3913: do not use autocommit=0 for table read --- 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 01683911a..5bf27c69e 100755 --- a/perl-xCAT/xCAT/DBobjUtils.pm +++ b/perl-xCAT/xCAT/DBobjUtils.pm @@ -618,7 +618,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;