test_full_dc_access | Error | failed on setup with "ccmlib.node.NodeError: C* process with 1260 is terminated"
self = <auth_test.TestNetworkAuth object at 0x7f37781018b0>
fixture_dtest_setup = <dtest_setup.DTestSetup object at 0x7f37762c0130>
@pytest.fixture(autouse=True)
def fixture_setup_auth(self, fixture_dtest_setup):
fixture_dtest_setup.cluster.set_configuration_options(values={
'authenticator': 'org.apache.cassandra.auth.PasswordAuthenticator',
'authorizer': 'org.apache.cassandra.auth.CassandraAuthorizer',
'role_manager': 'org.apache.cassandra.auth.CassandraRoleManager',
'network_authorizer': 'org.apache.cassandra.auth.CassandraNetworkAuthorizer',
'num_tokens': 1
})
> fixture_dtest_setup.cluster.populate([1, 1], debug=True).start(jvm_args=['-XX:-PerfDisableSharedMem'])
auth_test.py:3128:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/cluster.py:550: in start
node.watch_log_for(start_message, timeout=timeout, process=p, verbose=verbose, from_mark=mark,
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/node.py:608: in watch_log_for
self.raise_node_error_if_cassandra_process_is_terminated()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <ccmlib.node.Node object at 0x7f37762bfd00>
def raise_node_error_if_cassandra_process_is_terminated(self):
if not self._is_pid_running():
msg = "C* process with {pid} is terminated".format(pid=self.pid)
common.debug(msg)
> raise NodeError(msg)
E ccmlib.node.NodeError: C* process with 1260 is terminated
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/node.py:692: NodeError failed on teardown with "AttributeError: 'TestNetworkAuth' object has no attribute 'fixture_dtest_setup'"
self = <auth_test.TestNetworkAuth object at 0x7f37781018b0>
name = 'fixture_dtest_setup'
def __getattribute__(self, name):
try:
> return object.__getattribute__(self, name)
E AttributeError: 'TestNetworkAuth' object has no attribute 'fixture_dtest_setup'
dtest.py:241: AttributeError
During handling of the above exception, another exception occurred:
> lambda: ihook(item=item, **kwds), when=when, reraise=reraise
)
../cassandra/build/venv/lib/python3.8/site-packages/flaky/flaky_pytest_plugin.py:146:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
dtest.py:256: in cleanup_connections
self.fixture_dtest_setup.cleanup_connections()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <auth_test.TestNetworkAuth object at 0x7f37781018b0>
name = 'fixture_dtest_setup'
def __getattribute__(self, name):
try:
return object.__getattribute__(self, name)
except AttributeError:
> fixture_dtest_setup = object.__getattribute__(self, 'fixture_dtest_setup')
E AttributeError: 'TestNetworkAuth' object has no attribute 'fixture_dtest_setup'
dtest.py:243: AttributeError | 10.938 |