Skip to content

Commit 31c3e45

Browse files
committed
Use SIGKILL in drop_cluster() routine
By default drop_cluster() routine uses SIGTERM signal to stop the replications. Found that in some situations SIGTERM couldn't kill all replicas and some processes left. To avoid of such situations better to use SIGKILL signal to be sure that all the replications processes will be stopped.
1 parent b5fcafb commit 31c3e45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test_run.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ local function create_cluster(self, servers, test_suite, opts)
128128
end
129129
end
130130

131-
local drop_cluster_cmd1 = 'stop server %s'
131+
local drop_cluster_cmd1 = 'stop server %s with signal=KILL'
132132
local drop_cluster_cmd2 = 'cleanup server %s'
133133
local drop_cluster_cmd3 = 'delete server %s'
134134

0 commit comments

Comments
 (0)