This is an automated email from the ASF dual-hosted git repository.
mck 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 90585fe Fix reg exp in
replication_test.TestReplication.test_network_topology to include 4.0 verbs
90585fe is described below
commit 90585fe5add81d261f532fbf0c690eca9cc2f5ed
Author: Bereng <[email protected]>
AuthorDate: Thu Feb 25 10:58:19 2021 +0100
Fix reg exp in replication_test.TestReplication.test_network_topology to
include 4.0 verbs
patch by Berenguer Blasi; reviewed by Mick Semb Wever for CASSANDRA-16469
---
replication_test.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/replication_test.py b/replication_test.py
index 5ea07b2..966f084 100644
--- a/replication_test.py
+++ b/replication_test.py
@@ -15,8 +15,8 @@ since = pytest.mark.since
logger = logging.getLogger(__name__)
TRACE_DETERMINE_REPLICAS = re.compile('Determining replicas for mutation')
-TRACE_SEND_MESSAGE = re.compile(r'Sending (?:MUTATION|REQUEST_RESPONSE)
message to /([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)')
-TRACE_RESPOND_MESSAGE = re.compile(r'(?:MUTATION|REQUEST_RESPONSE) message
received from /([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)')
+TRACE_SEND_MESSAGE = re.compile(r'Sending
(?:MUTATION|MUTATION_REQ|REQUEST_RESPONSE) message to
/([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)')
+TRACE_RESPOND_MESSAGE =
re.compile(r'(?:MUTATION||MUTATION_REQ|REQUEST_RESPONSE) message received from
/([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)')
TRACE_COMMIT_LOG = re.compile('Appending to commitlog')
TRACE_FORWARD_WRITE = re.compile(r'Enqueuing forwarded write to
/([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)')
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]