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 2e1c8c26 Ignore streaming error from CASSANDRA-18733
2e1c8c26 is described below
commit 2e1c8c267a90aed9dac9905f1aad4f8572e7433e
Author: Brandon Williams <[email protected]>
AuthorDate: Tue Sep 5 10:55:23 2023 -0500
Ignore streaming error from CASSANDRA-18733
Patch by brandonwilliams; reviewed by bereng for CASSANDRA-18815
---
rebuild_test.py | 4 +++-
replace_address_test.py | 4 +++-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/rebuild_test.py b/rebuild_test.py
index 3837ed18..48e64e84 100644
--- a/rebuild_test.py
+++ b/rebuild_test.py
@@ -27,7 +27,9 @@ class TestRebuild(Tester):
r'Can\'t send migration request: node.*is down',
# ignore streaming error during bootstrap
r'Exception encountered during startup',
- r'Streaming error occurred'
+ r'Streaming error occurred',
+ # ignore streaming error during resumable tests
+ r'peer 127.0.0.3:7000 is probably down'
)
def test_simple_rebuild(self):
diff --git a/replace_address_test.py b/replace_address_test.py
index 547923c6..79165953 100644
--- a/replace_address_test.py
+++ b/replace_address_test.py
@@ -39,7 +39,9 @@ class BaseReplaceAddressTest(Tester):
# ignore streaming error during bootstrap
r'Streaming error occurred',
r'failed stream session',
- r'Failed to properly handshake with peer'
+ r'Failed to properly handshake with peer',
+ # ignore streaming error during resumable tests
+ r'peer 127.0.0.1:7000 is probably down'
)
def _setup(self, n=3, opts=None, enable_byteman=False,
mixed_versions=False):
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]