From 3d6068a783fa56177fc63d0d3cbae43131465473 Mon Sep 17 00:00:00 2001 From: dan jatnieks Date: Thu, 24 Jun 2021 14:34:22 -0700 Subject: [PATCH] STAR-386: Add logging around failure to get timestamp info (#28) (cherry picked from commit 09052110c8a07c236ed83dee875ad0670a32e43b) --- bootstrap_test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bootstrap_test.py b/bootstrap_test.py index 3f67df0621..960af0b4a7 100644 --- a/bootstrap_test.py +++ b/bootstrap_test.py @@ -882,7 +882,9 @@ def test_simultaneous_bootstrap(self): # Repeat the select count(*) query, to help catch # bugs like 9484, where count(*) fails at higher # data loads. + logger.error(node1.nodetool('status').stdout) for _ in range(5): + logger.error("Executing SELECT to node2") assert_one(session, "SELECT count(*) from keyspace1.standard1", [500000], cl=ConsistencyLevel.ONE) def test_cleanup(self):