From 5dd0dec27865372b68396d9398321fd24fc3e005 Mon Sep 17 00:00:00 2001 From: Jean-Marie Renouard Date: Wed, 26 Apr 2023 21:59:52 +0200 Subject: [PATCH] removing stop at the wrong place --- mysqltuner.pl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mysqltuner.pl b/mysqltuner.pl index 85be3d2..83fa800 100644 --- a/mysqltuner.pl +++ b/mysqltuner.pl @@ -3972,8 +3972,8 @@ sub mysqsl_pfs { "select * from sys.$pfs_view" ); } + exit 0 if ( $opt{stop} == 1 ); } - exit 0 if ( $opt{stop} == 1 ); # Top user per connection subheaderprint "Performance schema: Top 5 user per connection"; @@ -6512,7 +6512,6 @@ sub mysql_tables { } exit 0 if ( $opt{stop} == 1 ); } - exit 0 if ( $opt{stop} == 1 ); foreach ( select_user_dbs() ) { my $dbname = $_; next unless defined $_;