You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
("CH Warnings", query("SELECT * FROM system.warnings")),
1909
+
("CH Open sessions", query("SELECT event_time, client_address, client_port, interface, user, auth_type FROM system.session_log WHERE type == 'LoginSuccess' AND auth_id NOT IN (SELECT auth_id FROM system.session_log WHERE type == 'Logout') ORDER BY event_time")),
1910
+
("CH Metrics", query("SELECT metric, value FROM system.metrics WHERE value != 0"))
1903
1911
]:
1904
1912
try:
1905
1913
ifisinstance(command, str):
@@ -1910,7 +1918,7 @@ class TestCase:
1910
1918
exceptExceptionase:
1911
1919
print(f"Failed to execute post-failure command '{command}', got exception: {e}")
0 commit comments