From 6b4b76b8fefdc565d18d7dc90c313284cda7a768 Mon Sep 17 00:00:00 2001 From: "Alexander V. Tikhonov" Date: Mon, 2 Nov 2020 12:47:30 +0000 Subject: [PATCH] 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. --- test_run.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_run.lua b/test_run.lua index 06fbf6c6..f20f8519 100644 --- a/test_run.lua +++ b/test_run.lua @@ -128,7 +128,7 @@ local function create_cluster(self, servers, test_suite, opts) end end -local drop_cluster_cmd1 = 'stop server %s' +local drop_cluster_cmd1 = 'stop server %s with signal=KILL' local drop_cluster_cmd2 = 'cleanup server %s' local drop_cluster_cmd3 = 'delete server %s'