Automatic style fix

This commit is contained in:
robot-clickhouse 2023-10-20 19:06:01 +00:00
parent 8a0eae21f5
commit f377f4f594

View File

@ -133,7 +133,9 @@ def prepare_for_hung_check(drop_databases: bool) -> bool:
logging.info("Will terminate gdb (if any)")
call_with_retry("kill -TERM $(pidof gdb)")
# Sometimes there is a message `Child process was stopped by signal 19` in logs after stopping gdb
call_with_retry("kill -CONT $(cat /var/run/clickhouse-server/clickhouse-server.pid)")
call_with_retry(
"kill -CONT $(cat /var/run/clickhouse-server/clickhouse-server.pid)"
)
# ThreadFuzzer significantly slows down server and causes false-positive hung check failures
call_with_retry("clickhouse client -q 'SYSTEM STOP THREAD FUZZER'")