[Rt-commit] rt branch, 4.2/warn-mysql-5.6-innodb, repushed

Alex Vandiver alexmv at bestpractical.com
Fri Mar 6 13:08:25 EST 2015


The branch 4.2/warn-mysql-5.6-innodb was deleted and repushed:
       was 4e683be90bde2a79b8fca40b9dc1a11909e1a5d0
       now a828ba6d34c5098b7d339645efd30338f0aa0680

1:  83532bb = 1:  83532bb Warn if innodb_log_file_size would limit uploads to < 5M
2:  4e683be ! 2:  a828ba6 Increase the warn threshold on max_allowed_packet to 5M
    @@ -18,3 +18,12 @@
                      $max_packet = sprintf("%.1fM", $max_packet/1024/1024);
                      warn "max_allowed_packet is set to $max_packet, which limits the maximum attachment or email size that RT can process.  Consider adjusting MySQL's max_allowed_packet setting.\n";
                  }
    +@@
    + 
    +                 if ($redo_log_size / 10 < 5 * 1024 * 1024) {
    +                     $redo_log_size = sprintf("%.1fM",$redo_log_size/1024/1024);
    +-                    warn "innodb_log_file_size is set to $innodb_log_file_size; attachments can only be 10% of this value on MySQL 5.6.  Consider adjusting MySQL's innodb_log_file_size setting.\n";
    ++                    warn "innodb_log_file_size is set to $redo_log_size; attachments can only be 10% of this value on MySQL 5.6.  Consider adjusting MySQL's innodb_log_file_size setting.\n";
    +                 }
    +             }
    +         }



More information about the rt-commit mailing list