We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2f926c8 + 1d1683e commit dabb226Copy full SHA for dabb226
mysqltuner.pl
@@ -6261,7 +6261,12 @@ sub mariadb_galera {
6261
goodprint "InnoDB flush log at each commit is disabled for Galera.";
6262
}
6263
6264
- infoprint "Read consistency mode :" . $myvar{'wsrep_causal_reads'};
+ if ( defined $myvar{'wsrep_causal_reads'} and $myvar{'wsrep_causal_reads'} ne '' ) {
6265
+ infoprint "Read consistency mode :" . $myvar{'wsrep_causal_reads'};
6266
+ }
6267
+ elsif ( defined $myvar{'wsrep_sync_wait'} ) {
6268
+ infoprint "Sync Wait mode : " . $myvar{'wsrep_sync_wait'};
6269
6270
6271
if ( defined( $myvar{'wsrep_cluster_name'} )
6272
and $myvar{'wsrep_on'} eq "ON" )
0 commit comments