From c88f07fa734bb82df60d809cfad88f7ff7567045 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Fri, 1 Apr 2011 21:17:33 +0300 Subject: [PATCH] Grammar fix. --- mysqltuner.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysqltuner.pl b/mysqltuner.pl index 4e98782..88cb539 100755 --- a/mysqltuner.pl +++ b/mysqltuner.pl @@ -394,7 +394,7 @@ sub get_replication_status { my $sql_running = `mysql -Bse "show slave status\\G"|grep -i slave_sql_running|awk '{ print \$2}'`; if ($io_running eq 'Yes' && $sql_running eq 'Yes') { if ($myvar{'read_only'} eq 'OFF') { - badprint "This replication slave running with read_only option disabled."; + badprint "This replication slave is running with the read_only option disabled."; } else { goodprint "This replication slave is running with the read_only option enabled."; }