Commit 38ae0976 authored by unknown's avatar unknown
Browse files

Correct the non working check for --skip-log-bin in "extra_opt"

parent 56e9231f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3601,7 +3601,7 @@ sub mysqld_arguments ($$$$$) {
  }

  # Check if "extra_opt" contains --skip-log-bin
  my $skip_binlog= grep('--skip-log-bin', @$extra_opt);
  my $skip_binlog= grep(/^--skip-log-bin/, @$extra_opt);

  if ( $type eq 'master' )
  {