Unit Test Results.

Designed for use with JUnit and Ant.

All Failures

ClassNameStatusTypeTime(s)
8_cythonno_x86_64_18_64test_multi_partition_consistent_reads_after_writeFailureOSError: handle is closed

self = <materialized_views_test.TestMaterializedViewsConsistency object at 0x7f83f4b779d0>

def test_multi_partition_consistent_reads_after_write(self):
"""
Tests consistency of multiple writes to a multiple partitions

@jira_ticket CASSANDRA-10981
"""
> self._consistent_reads_after_write_test(5)

materialized_views_test.py:2846:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
materialized_views_test.py:2923: in _consistent_reads_after_write_test
mm = queues[i % processes].get(timeout=60)
/usr/lib/python3.8/multiprocessing/queues.py:111: in get
res = self._recv_bytes()
/usr/lib/python3.8/multiprocessing/connection.py:212: in recv_bytes
self._check_closed()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <multiprocessing.connection.Connection object at 0x7f83b2101cd0>

def _check_closed(self):
if self._handle is None:
> raise OSError("handle is closed")
E OSError: handle is closed

/usr/lib/python3.8/multiprocessing/connection.py:136: OSError
134.152