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.
1 parent 0eaf24e commit ca42ee0Copy full SHA for ca42ee0
mysql-test/suite/galera/t/galera_suspend_slave.test
@@ -25,7 +25,7 @@ CREATE TABLE t1 (f1 INTEGER PRIMARY KEY) ENGINE=InnoDB;
25
my $pid_filename = $ENV{'NODE_2_PIDFILE'};
26
my $mysqld_pid = `cat $pid_filename`;
27
chomp($mysqld_pid);
28
- system("kill -19 $mysqld_pid");
+ system("kill -SIGSTOP $mysqld_pid");
29
exit(0);
30
EOF
31
@@ -37,7 +37,7 @@ INSERT INTO t1 VALUES (1);
37
38
39
40
- system("kill -18 $mysqld_pid");
+ system("kill -SIGCONT $mysqld_pid");
41
42
43
0 commit comments