8_cythonno_x86_64_11_64 | test_multi_partition_consistent_reads_after_write | Failure | ValueError: Queue <multiprocessing.queues.Queue object at 0x7fbf539b3c40> is closed
self = <materialized_views_test.TestMaterializedViewsConsistency object at 0x7fbf548d74c0>
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)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <multiprocessing.queues.Queue object at 0x7fbf539b3c40>, block = True
timeout = 60
def get(self, block=True, timeout=None):
if self._closed:
> raise ValueError(f"Queue {self!r} is closed")
E ValueError: Queue <multiprocessing.queues.Queue object at 0x7fbf539b3c40> is closed
/usr/lib/python3.8/multiprocessing/queues.py:94: ValueError | 109.886 |