From 425b31ba1b5adf021cddaeaeed1acda03710a635 Mon Sep 17 00:00:00 2001 From: Alexander Tokmakov Date: Thu, 12 May 2022 15:04:12 +0300 Subject: [PATCH] Update stress --- docker/test/stress/stress | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/test/stress/stress b/docker/test/stress/stress index d78de84f60d..8c05f1029a6 100755 --- a/docker/test/stress/stress +++ b/docker/test/stress/stress @@ -126,7 +126,7 @@ def prepare_for_hung_check(drop_databases): for db in databases: if db == "system": continue - command = make_query_command(f'DROP DATABASE {db}') + command = make_query_command(f'DETACH DATABASE {db}') # we don't wait for drop Popen(command, shell=True) break