This is an automated email from the ASF dual-hosted git repository.
brandonwilliams 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 8b7c3cc6 Ignore REE when < 4.0 in replace tests
8b7c3cc6 is described below
commit 8b7c3cc693e8a3ae2741b6883333365c3ab87c56
Author: Brandon Williams <[email protected]>
AuthorDate: Tue May 10 14:59:32 2022 -0500
Ignore REE when < 4.0 in replace tests
Patch by brandonwilliams; reviewed by bereng for CASSANDRA-17611
---
replace_address_test.py | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/replace_address_test.py b/replace_address_test.py
index b3fd586b..995ea033 100644
--- a/replace_address_test.py
+++ b/replace_address_test.py
@@ -368,6 +368,11 @@ class TestReplaceAddress(BaseReplaceAddressTest):
self.fixture_dtest_setup.ignore_log_patterns =
list(self.fixture_dtest_setup.ignore_log_patterns) + [
r'Exception encountered during startup']
+ # see CASSANDRA-17611
+ if self.cluster.version() < '4.0':
+ self.fixture_dtest_setup.ignore_log_patterns =
list(self.fixture_dtest_setup.ignore_log_patterns) + [
+ r'RejectedExecutionException']
+
self._setup(n=3)
node1, node2, node3 = self.cluster.nodelist()
self.cluster.seeds.append(node3.address())
@@ -402,6 +407,11 @@ class TestReplaceAddress(BaseReplaceAddressTest):
self.fixture_dtest_setup.ignore_log_patterns =
list(self.fixture_dtest_setup.ignore_log_patterns) + [
r'Exception encountered during startup']
+ # see CASSANDRA-17611
+ if self.cluster.version() < '4.0':
+ self.fixture_dtest_setup.ignore_log_patterns =
list(self.fixture_dtest_setup.ignore_log_patterns) + [
+ r'RejectedExecutionException']
+
self._setup(n=3)
self._insert_data()
initial_data = self._fetch_initial_data()
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]