Update stress

This commit is contained in:
Alexander Tokmakov 2022-05-12 15:04:12 +03:00 committed by GitHub
parent 5daf1b81a0
commit 425b31ba1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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