From 384f3222614d5fd24f8919de729f81bdbccbcd51 Mon Sep 17 00:00:00 2001 From: David Capwell Date: Wed, 17 Aug 2022 16:30:38 -0700 Subject: [PATCH] CASSANDRA-17828: Read/Write/Truncate throw RequestFailure in a race condition with callback timeouts, should return Timeout instead --- cql_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cql_test.py b/cql_test.py index 99d3088ced..a4ce0d5f4e 100644 --- a/cql_test.py +++ b/cql_test.py @@ -796,7 +796,7 @@ def test_truncate_failure(self): thrown = True assert thrown, "No exception has been thrown" - assert re.search("Truncate failed on replica /127.0.0.3", str(exception)) is not None + assert re.search("Truncate failed on replicas? /127.0.0.3", str(exception)) is not None @since('3.2') class AbortedQueryTester(CQLTester):