Skip to content

Commit

Permalink
Worker threads should respond to kill command in any state
Browse files Browse the repository at this point in the history
Summary:
There were some states where worker threads were not responsive to kill
command. Fixed those cases. Also added a stop slave stress test.

Reviewed By: anirbanr-fb

Differential Revision: D9073572

fbshipit-source-id: 16bc2fe
  • Loading branch information
abhinav04sharma authored and inikep committed Aug 13, 2020
1 parent 0429320 commit 2ec5bd1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ set debug_sync="now wait_for signal.reached";
# insert
let $wait_condition=
select count(*)= 1 from information_schema.processlist
where state like 'Executing Table_map event at position%';
where state = 'Waiting for dependencies to be satisfied';
source include/wait_condition.inc;

select * from t1;
Expand Down

0 comments on commit 2ec5bd1

Please sign in to comment.