You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by sa...@apache.org on 2021/01/22 11:17:00 UTC

[cassandra-dtest] branch trunk updated: Protocol v5 is only supported in 4.0+ (#116)

This is an automated email from the ASF dual-hosted git repository.

samt pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra-dtest.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 550c4ed  Protocol v5 is only supported in 4.0+ (#116)
550c4ed is described below

commit 550c4ed1584428645b096efd224cc0af81214493
Author: Sam Tunnicliffe <sa...@beobal.com>
AuthorDate: Fri Jan 22 11:16:50 2021 +0000

    Protocol v5 is only supported in 4.0+ (#116)
    
    Follow up to CASSANDRA-15299
    
    Patch by Sam Tunnicliffe; reviewed by Marcus Eriksson
---
 pushed_notifications_test.py | 2 +-
 read_failures_test.py        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pushed_notifications_test.py b/pushed_notifications_test.py
index 8f235a4..a86a5a7 100644
--- a/pushed_notifications_test.py
+++ b/pushed_notifications_test.py
@@ -385,7 +385,7 @@ class TestVariousNotifications(Tester):
         read_request_timeout_in_ms.
         @jira_ticket CASSANDRA-7886
         """
-        have_v5_protocol = self.cluster.version() >= LooseVersion('3.10')
+        have_v5_protocol = self.supports_v5_protocol(self.cluster.version())
 
         self.fixture_dtest_setup.allow_log_errors = True
         self.cluster.set_configuration_options(
diff --git a/read_failures_test.py b/read_failures_test.py
index 3f35575..475f278 100644
--- a/read_failures_test.py
+++ b/read_failures_test.py
@@ -106,7 +106,7 @@ class TestReadFailures(Tester):
         self._insert_tombstones(session, 600)
         self._perform_cql_statement(session, "SELECT value FROM tombstonefailure")
 
-    @since('3.10')
+    @since('4.0')
     def test_tombstone_failure_v5(self):
         """
         A failed read due to tombstones at v5 should result in a ReadFailure with


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org
For additional commands, e-mail: commits-help@cassandra.apache.org