Skip to content

Flaky test_system_clusters_actual_information #55168

@qoega

Description

@qoega

https://s3.amazonaws.com/clickhouse-test-reports/0/332b3e644b8df1356da413b5429f154c7b564893/integration_tests__tsan__[4_6].html

>       error = node.query_and_get_error(
            "SELECT count() FROM distributed SETTINGS receive_timeout=1, handshake_timeout_ms=1"
        )

test_system_clusters_actual_information/test.py:43: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
helpers/cluster.py:3423: in query_and_get_error
    return self.client.query_and_get_error(
helpers/client.py:36: in wrap
    return func(self, *args, **kwargs)
helpers/client.py:135: in query_and_get_error
    ).get_error()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <helpers.client.CommandRequest object at 0x7ff387776f20>

    def get_error(self):
        self.process.wait(timeout=DEFAULT_QUERY_TIMEOUT)
        self.stdout_file.seek(0)
        self.stderr_file.seek(0)
    
        stdout = self.stdout_file.read().decode("utf-8", errors="replace")
        stderr = self.stderr_file.read().decode("utf-8", errors="replace")
    
        if (
            self.timer is not None
            and not self.process_finished_before_timeout
            and not self.ignore_error
        ):
            raise QueryTimeoutExceedException("Client timed out!")
    
        if self.process.returncode == 0:
>           raise QueryRuntimeException(
                "Client expected to be failed but succeeded! stdout: {}".format(stdout),
                self.process.returncode,
                stderr,
            )
E           helpers.client.QueryRuntimeException: Client expected to be failed but succeeded! stdout: 0

Metadata

Metadata

Assignees

Labels

testingSpecial issue with list of bugs found by CI

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions