You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by sp...@apache.org on 2017/08/10 06:34:22 UTC

cassandra-dtest git commit: Update regex for expected digest mismatch log message

Repository: cassandra-dtest
Updated Branches:
  refs/heads/master 959208749 -> 459943a35


Update regex for expected digest mismatch log message

patch by Zhao Yang; reviewed by Stefan Podkowinski for CASSANDRA-13723


Project: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/commit/459943a3
Tree: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/tree/459943a3
Diff: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/diff/459943a3

Branch: refs/heads/master
Commit: 459943a35e7ea9ef49791b47bebaacc0b5af6e04
Parents: 9592087
Author: Zhao Yang <zh...@gmail.com>
Authored: Mon Aug 7 15:49:04 2017 +0800
Committer: Stefan Podkowinski <st...@1und1.de>
Committed: Thu Aug 10 08:30:39 2017 +0200

----------------------------------------------------------------------
 materialized_views_test.py | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra-dtest/blob/459943a3/materialized_views_test.py
----------------------------------------------------------------------
diff --git a/materialized_views_test.py b/materialized_views_test.py
index 77b20e6..79679ca 100644
--- a/materialized_views_test.py
+++ b/materialized_views_test.py
@@ -228,7 +228,6 @@ class TestMaterializedViews(Tester):
 
         debug("wait that all batchlogs are replayed")
         self._replay_batchlogs()
-
         for i in xrange(5):
             for j in xrange(10000):
                 assert_one(session, "SELECT * FROM t_by_v WHERE id = {} AND v = {}".format(i, j), [j, i])
@@ -1064,8 +1063,8 @@ class TestMaterializedViews(Tester):
         # execution happening
 
         # Look for messages like:
-        #         Digest mismatch: org.apache.cassandra.service.DigestMismatchException: Mismatch for key DecoratedKey
-        regex = r"Digest mismatch: org.apache.cassandra.service.DigestMismatchException: Mismatch for key DecoratedKey"
+        #         Digest mismatch: Mismatch for key DecoratedKey
+        regex = r"Digest mismatch: Mismatch for key DecoratedKey"
         for event in trace.events:
             desc = event.description
             match = re.match(regex, desc)


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