[otrs-cvs] Support/Kernel/System/Support/Database mysql.pm, 1.36, 1.37

"CVS commits notifications of OTRS.org" <[email protected]> Wed, 1 May 2013 10:24:44 +0000
Newsgroups gmane.comp.otrs.cvs
Message-ID <[email protected]>
Comments:
Update of /home/cvs/Support/Kernel/System/Support/Database
In directory lancelot:/tmp/cvs-serv22452/Kernel/System/Support/Database

Modified Files:
	mysql.pm 
Log Message:
Fixed bug#9379 - Increase minimum max_allowed_packet to 20 MB.

Author: mb

Index: mysql.pm
===================================================================
RCS file: /home/cvs/Support/Kernel/System/Support/Database/mysql.pm,v
retrieving revision 1.36
retrieving revision 1.37
diff -2 -u -d -r1.36 -r1.37
--- mysql.pm	23 Jan 2013 16:38:27 -0000	1.36
+++ mysql.pm	1 May 2013 10:24:39 -0000	1.37
@@ -281,9 +281,9 @@
     while ( my @Row = $Self->{DBObject}->FetchrowArray() ) {
         if ( $Row[0] =~ /^max_allowed_packet/i ) {
-            if ( $Row[1] < 1024 * 1024 * 7 ) {
+            if ( $Row[1] < 1024 * 1024 * 20 ) {
                 $Row[1]  = int( $Row[1] / 1024 / 1024 );
                 $Check   = 'Failed';
                 $Message = '"max_allowed_packet" ' .
-                    $Self->{LanguageObject}->Get("should be higher than 7 MB (it's")
+                    $Self->{LanguageObject}->Get("should be higher than 20 MB (it's")
                     . " $Row[1] MB).";
             }
---------------------------------------------------------------------
OTRS mailing list: cvs-log - Webpage: http://otrs.org/
Archive: http://lists.otrs.org/pipermail/cvs-log
To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/cvs-log