mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
print what is running when can't stop clickhouse
This commit is contained in:
parent
f4cfd8a2d9
commit
ff4e10fdd4
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user