print what is running when can't stop clickhouse

This commit is contained in:
Yatsishin Ilya 2023-02-07 15:46:55 +00:00
parent f4cfd8a2d9
commit ff4e10fdd4

View File

@ -3784,6 +3784,9 @@ class ClickHouseInstance:
while local_counter < retries:
if not self.get_process_pid("clickhouse server"):
break
self.exec_in_container(
["bash", "-c", "ps aux"], user="root"
)
time.sleep(0.5)
local_counter += 1
@ -3844,6 +3847,9 @@ class ClickHouseInstance:
while local_counter < retries:
if not self.get_process_pid("clickhouse server"):
break
self.exec_in_container(
["bash", "-c", "ps aux"], user="root"
)
time.sleep(0.5)
local_counter += 1