This is an automated email from the ASF dual-hosted git repository. pgj pushed a commit to branch jenkins-clouseau-3.0.0 in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit d6f40d606e5e6aa4e33811f483e2004524708fe5 Author: Gabor Pali <[email protected]> AuthorDate: Thu Nov 27 08:22:32 2025 +0100 [DEBUG] Dump Clouseau ping details --- dev/run | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dev/run b/dev/run index 6bf4cc6a3..b18e63057 100755 --- a/dev/run +++ b/dev/run @@ -897,7 +897,12 @@ def check_clouseau_node_alive(ctx, idx): ] ) - if sp.check_output(cmd) != b"pong": + output = sp.check_output(cmd) + + print(f"DEBUG: cmd = {cmd}") + print(f"DEBUG: output = {output}") + + if output != b"pong": raise ValueError("Clouseau is not working")
