clickhouse-test: do not propagate CLICKHOUSE_PORT_HTTP to clickhouse-client

This commit is contained in:
Azat Khuzhin 2021-10-16 17:59:17 +03:00
parent c6e61e9497
commit 612a21cc97

View File

@ -1395,7 +1395,6 @@ if __name__ == '__main__':
http_port = os.getenv("CLICKHOUSE_PORT_HTTP")
if http_port is not None:
args.http_port = int(http_port)
args.client += f" --port={http_port}"
else:
args.http_port = 8123